diff options
author | Case Duckworth | 2022-01-14 17:20:23 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-14 17:20:23 -0600 |
commit | 4b2e57e396314e63d70558e0aa5ad32c1cf87532 (patch) | |
tree | bcd7ccb4c2fac92f7b93702e2c9ec5fa21e4a068 /init.el | |
parent | Merge branch 'main' of https://tildegit.org/acdw/emacs (diff) | |
download | emacs-4b2e57e396314e63d70558e0aa5ad32c1cf87532.tar.gz emacs-4b2e57e396314e63d70558e0aa5ad32c1cf87532.zip |
David Bowie
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/init.el b/init.el index 36c2bed..735ca61 100644 --- a/init.el +++ b/init.el | |||
@@ -179,11 +179,11 @@ | |||
179 | (cond ((executable-find "mpv") #'+browse-image-with-mpv) | 179 | (cond ((executable-find "mpv") #'+browse-image-with-mpv) |
180 | (t #'eww-browse-url)) | 180 | (t #'eww-browse-url)) |
181 | args))) | 181 | args))) |
182 | (cons (rx | 182 | (cons (rx (or ;; videos |
183 | (or "youtube.com" "youtu.be" "yewtu.be" | 183 | "youtube.com" "youtu.be" "yewtu.be" "invidious" |
184 | ;; videos | ||
185 | (seq "." (or "mp4" "gif" "mov" "MOV" "webm") eos) | 184 | (seq "." (or "mp4" "gif" "mov" "MOV" "webm") eos) |
186 | ;; music | 185 | ;; music |
186 | "soundcloud.com" "bandcamp.com" | ||
187 | (seq "." (or "ogg" "mp3") eos))) | 187 | (seq "." (or "ogg" "mp3") eos))) |
188 | (lambda (&rest args) | 188 | (lambda (&rest args) |
189 | (apply (if (executable-find "mpv") | 189 | (apply (if (executable-find "mpv") |
@@ -459,6 +459,8 @@ | |||
459 | org-outline-path-complete-in-steps nil | 459 | org-outline-path-complete-in-steps nil |
460 | org-pretty-entities t | 460 | org-pretty-entities t |
461 | org-pretty-entities-include-sub-superscripts nil | 461 | org-pretty-entities-include-sub-superscripts nil |
462 | org-refile-targets '((nil . (:maxlevel . 2)) | ||
463 | (org-agenda-files . (:maxlevel . 1))) | ||
462 | org-refile-use-outline-path 'file | 464 | org-refile-use-outline-path 'file |
463 | org-special-ctrl-a/e t | 465 | org-special-ctrl-a/e t |
464 | org-special-ctrl-k t | 466 | org-special-ctrl-k t |
@@ -556,7 +558,7 @@ | |||
556 | org-export-with-sub-superscripts t | 558 | org-export-with-sub-superscripts t |
557 | org-export-with-toc nil) | 559 | org-export-with-toc nil) |
558 | (with-eval-after-load 'user-save | 560 | (with-eval-after-load 'user-save |
559 | (add-hook 'org-export-before-processing-hook #'user-save-buffer))) | 561 | (advice-add 'org-export-dispatch :before 'user-save-run-hooks))) |
560 | 562 | ||
561 | (setup prog | 563 | (setup prog |
562 | (:local-set comment-auto-fill-only-comments t) | 564 | (:local-set comment-auto-fill-only-comments t) |
@@ -996,7 +998,7 @@ See also `crux-reopen-as-root-mode'." | |||
996 | elfeed-show-unique-buffers t | 998 | elfeed-show-unique-buffers t |
997 | elfeed-db-directory (elfeed/ "db/" t)) | 999 | elfeed-db-directory (elfeed/ "db/" t)) |
998 | (:+key "C-x w" #'elfeed) | 1000 | (:+key "C-x w" #'elfeed) |
999 | (advice-add #'elfeed-search-fetch :after #'beginning of buffer) | 1001 | (advice-add #'elfeed-search-fetch :after #'beginning-of-buffer) |
1000 | (:with-mode elfeed-search-mode | 1002 | (:with-mode elfeed-search-mode |
1001 | (:bind "&" #'+elfeed-search-browse-generic) | 1003 | (:bind "&" #'+elfeed-search-browse-generic) |
1002 | (:hook #'hl-line-mode) | 1004 | (:hook #'hl-line-mode) |