adding more keybinds

This commit is contained in:
Chris Cochrun 2022-07-15 16:35:00 -05:00
parent 7ba4b1bbd2
commit d39b284d7a
2 changed files with 4 additions and 17 deletions

View file

@ -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") "ht" '(which-key-show-top-level :which-key "show top-level keybindings")
"ss" '(consult-line :which-key "consult search") "ss" '(consult-line :which-key "consult search")
"sr" '(consult-ripgrep :which-key "consult ripgrep") "sr" '(consult-ripgrep :which-key "consult ripgrep")
"sd" '(dictionary-search :which-key "search the dictionary")
"oP" '(proced :which-key "proced") "oP" '(proced :which-key "proced")
"wo" '(other-window :which-key "other window") "wo" '(other-window :which-key "other window")
"wd" '(delete-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-fontify-quote-and-verse-blocks t
org-src-preserve-indentation t org-src-preserve-indentation t
org-src-window-setup 'other-window org-src-window-setup 'other-window
org-export-with-broken-links t
org-agenda-current-time-string "⭠ now ────────────────") org-agenda-current-time-string "⭠ now ────────────────")
(add-hook 'org-mode-hook 'chris/org-mode-setup) (add-hook 'org-mode-hook 'chris/org-mode-setup)

19
init.el
View file

@ -271,6 +271,7 @@
"ht" '(which-key-show-top-level :which-key "show top-level keybindings") "ht" '(which-key-show-top-level :which-key "show top-level keybindings")
"ss" '(consult-line :which-key "consult search") "ss" '(consult-line :which-key "consult search")
"sr" '(consult-ripgrep :which-key "consult ripgrep") "sr" '(consult-ripgrep :which-key "consult ripgrep")
"sd" '(dictionary-search :which-key "search the dictionary")
"oP" '(proced :which-key "proced") "oP" '(proced :which-key "proced")
"wo" '(other-window :which-key "other window") "wo" '(other-window :which-key "other window")
"wd" '(delete-window :which-key "other window") "wd" '(delete-window :which-key "other window")
@ -370,6 +371,7 @@
org-fontify-quote-and-verse-blocks t org-fontify-quote-and-verse-blocks t
org-src-preserve-indentation t org-src-preserve-indentation t
org-src-window-setup 'other-window org-src-window-setup 'other-window
org-export-with-broken-links t
org-agenda-current-time-string "⭠ now ────────────────") org-agenda-current-time-string "⭠ now ────────────────")
(add-hook 'org-mode-hook 'chris/org-mode-setup) (add-hook 'org-mode-hook 'chris/org-mode-setup)
@ -2272,20 +2274,3 @@ interfere with the default `bongo-playlist-buffer'."
gcmh-verbose nil)) gcmh-verbose nil))
(setq warning-suppress-types '((comp))) (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"))))