fix(tazjin/emacs): Stop undo-tree's new file barfing

undo-tree recently change dsome behaviour and started barfing "history
backup files" all over the place. These are really annoying and this
commit disables them completely.

Change-Id: I1c4ac0b12ba12d1f45c3f0516d16ba4f1f090700
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5504
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-04-24 14:02:34 +02:00 committed by clbot
parent 36966736fa
commit 404d92356d

View file

@ -123,7 +123,11 @@
(use-package telephone-line) ;; configuration happens outside of use-package
(use-package term-switcher)
(use-package undo-tree :config (global-undo-tree-mode))
(use-package undo-tree
:config (global-undo-tree-mode)
:custom (undo-tree-auto-save-history nil))
(use-package uuidgen)
(use-package which-key :config (which-key-mode t))