From 828448680a804b7acd053a379ba46d4421cb4b7e Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 27 Oct 2023 06:02:04 +0200 Subject: [PATCH] Disable undo-tree saving MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- configuration.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration.org b/configuration.org index 4cf75fb..1f6ea1b 100644 --- a/configuration.org +++ b/configuration.org @@ -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 ViM’s ~ci~ functionality