about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-06-01 22:30:05 -0500
committerCase Duckworth2021-06-01 22:30:05 -0500
commit6fd355d978c0f6146ed101effa12661453ecea04 (patch)
tree0afa3b584c8282e7e5473ef7cacee82d0d0c4c70 /init.el
parentChange Gnus keybind (diff)
downloademacs-6fd355d978c0f6146ed101effa12661453ecea04.tar.gz
emacs-6fd355d978c0f6146ed101effa12661453ecea04.zip
Add ORG functionality
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/init.el b/init.el index b970012..fc5927e 100644 --- a/init.el +++ b/init.el
@@ -1047,7 +1047,13 @@ if ripgrep is installed, otherwise `consult-grep'."
1047 org-directory "~/org") 1047 org-directory "~/org")
1048 1048
1049 (:bind "RET" acdw-org/return-dwim 1049 (:bind "RET" acdw-org/return-dwim
1050 "<S-return>" acdw-org/org-table-copy-down) 1050 "<S-return>" acdw-org/org-table-copy-down
1051 "M-SPC M-SPC" insert-zero-width-space
1052 "C-c C-l" org-insert-link-dwim)
1053
1054 (with-eval-after-load 'org-export
1055 (add-to-list 'org-export-filter-final-output-functions
1056 #'org-export-remove-zero-width-spaces))
1051 1057
1052 (defun acdw/org-fix-lines-before-save () 1058 (defun acdw/org-fix-lines-before-save ()
1053 (add-hook 'before-save-hook #'acdw-org/fix-blank-lines-in-buffer 0 :local)) 1059 (add-hook 'before-save-hook #'acdw-org/fix-blank-lines-in-buffer 0 :local))