aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/config.org
diff options
context:
space:
mode:
Diffstat (limited to 'Emacs/.config/emacs/config.org')
-rw-r--r--Emacs/.config/emacs/config.org7
1 files changed, 6 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 748619e..621fb3b 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -1908,7 +1908,10 @@ at once, without using a VCS like git (all in Emacs).
#+begin_src emacs-lisp
(use-package undo-tree
:straight t
- :hook (emacs-startup-hook . global-undo-tree-mode))
+ :hook (after-init-hook . global-undo-tree-mode)
+ :general
+ (leader
+ "tu" #'undo-tree-visualize))
#+end_src
*** White space
Deleting whitespace, highlighting when going beyond the 80th character
@@ -1921,6 +1924,8 @@ limit), so set it for specific modes need the help.
:general
(nmmap
"M--" #'whitespace-cleanup)
+ (leader
+ "ts" #'whitespace-mode)
:hook
(before-save-hook . whitespace-cleanup)
(c-mode-hook . whitespace-mode)