Disable undo-tree saving

It writes a lot of files which might sound handy but since i don’t always use
Emacs to edit files, they can easily become obsolete.
This commit is contained in:
Gergely Polonkai 2023-10-27 06:02:04 +02:00
parent 519f7acf1a
commit 828448680a
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 3 additions and 1 deletions

View File

@ -1796,7 +1796,9 @@ INFO plist."
#+begin_src emacs-lisp
(use-package undo-tree
:config
(global-undo-tree-mode))
(global-undo-tree-mode)
:custom
(undo-tree-auto-save-history nil))
#+end_src
** ~ciel~ to mimic ViMs ~ci~ functionality