Restore a deleted keybind

This commit is contained in:
Evie Litherland-Smith 2023-10-28 10:17:37 +01:00
parent f3c33a8648
commit 25a2daebd2
2 changed files with 5 additions and 2 deletions

View file

@ -23,6 +23,9 @@
;; define a key to define the word at point.
(keymap-set global-map "M-#" #'dictionary-lookup-definition)
;; define key to open recent files
(keymap-set global-map "C-c r" #'recentf)
;; turn on spell checking, if available.
(with-eval-after-load 'ispell
(when (executable-find ispell-program-name)

View file

@ -45,8 +45,8 @@
(defhydra org (global-map "C-c o")
"Org-Mode"
("a" org-agenda)
("c" org-capture)
("j c" calendar)
("n" org-capture)
("c" org-goto-calendar)
("j j" org-journal-new-entry)
("j n" org-journal-new-date-entry)
("j s" org-journal-new-scheduled-entry)))