Add some org hotkeys

This commit is contained in:
2024-10-01 23:40:09 -07:00
parent 2dd6ce8f35
commit 3118889f4f

View File

@@ -648,12 +648,15 @@
:map org-mode-map :map org-mode-map
("C-j" . nil) ("C-j" . nil)
("C-a" . mwim-beginning) ("C-a" . mwim-beginning)
("C-e" . mwim-end)) ("C-e" . mwim-end)
:map org-src-mode-map
("C-c C-c" . org-edit-src-exit))
:hook ((org-mode . visual-line-mode)) :hook ((org-mode . visual-line-mode))
:custom :custom
(org-special-ctrl-a/e 'reversed) (org-special-ctrl-a/e 'reversed)
(org-hide-emphasis-markers t) (org-hide-emphasis-markers t)
(org-use-speed-commands t) (org-use-speed-commands t)
(add-to-list 'org-speed-commands '("h" . org-fold-hide-sublevels))
(org-use-fast-todo-selection 'expert) (org-use-fast-todo-selection 'expert)
(org-todo-keywords '((sequence "TODO(t)" "BLOCKED(b)" "|" "DONE(d)"))) (org-todo-keywords '((sequence "TODO(t)" "BLOCKED(b)" "|" "DONE(d)")))
(org-image-actual-width '(800))) (org-image-actual-width '(800)))