diff --git a/README.org b/README.org index 15154a74..8ab831d5 100644 --- a/README.org +++ b/README.org @@ -463,6 +463,7 @@ This evil-collection package includes a lot of other evil based things. "ht" '(which-key-show-top-level :which-key "show top-level keybindings") "ss" '(consult-line :which-key "consult search") "sr" '(consult-ripgrep :which-key "consult ripgrep") + "sd" '(dictionary-search :which-key "search the dictionary") "oP" '(proced :which-key "proced") "wo" '(other-window :which-key "other window") "wd" '(delete-window :which-key "other window") @@ -577,6 +578,7 @@ Part of this config includes some special capture templates for my work as a you org-fontify-quote-and-verse-blocks t org-src-preserve-indentation t org-src-window-setup 'other-window + org-export-with-broken-links t org-agenda-current-time-string "⭠ now ────────────────") (add-hook 'org-mode-hook 'chris/org-mode-setup) diff --git a/init.el b/init.el index 1db07e4b..c60a26f5 100644 --- a/init.el +++ b/init.el @@ -271,6 +271,7 @@ "ht" '(which-key-show-top-level :which-key "show top-level keybindings") "ss" '(consult-line :which-key "consult search") "sr" '(consult-ripgrep :which-key "consult ripgrep") + "sd" '(dictionary-search :which-key "search the dictionary") "oP" '(proced :which-key "proced") "wo" '(other-window :which-key "other window") "wd" '(delete-window :which-key "other window") @@ -370,6 +371,7 @@ org-fontify-quote-and-verse-blocks t org-src-preserve-indentation t org-src-window-setup 'other-window + org-export-with-broken-links t org-agenda-current-time-string "⭠ now ────────────────") (add-hook 'org-mode-hook 'chris/org-mode-setup) @@ -2272,20 +2274,3 @@ interfere with the default `bongo-playlist-buffer'." gcmh-verbose nil)) (setq warning-suppress-types '((comp))) -(custom-set-variables - ;; custom-set-variables was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(pdf-misc-print-program "/usr/bin/lpr") - '(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot")) - '(safe-local-variable-values - '((aggressive-indent-mode) - (projectile-project-run-cmd . "./build/bin/presenter") - (projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make --dir build/")))) -(custom-set-faces - ;; custom-set-faces was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(org-modern-tag ((t :background "#9aedfe" :foreground "#282a36"))))