summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
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))