Add undo-tree package

This commit is contained in:
Maciej 2020-11-27 21:20:11 +02:00
parent 81c60f404d
commit affdeb52fe
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 18 additions and 2 deletions

View file

@ -155,6 +155,18 @@
(keyfreq-mode t)
(keyfreq-autosave-mode t)
;;;;;;;;;;;;;;;;; Use more advanced undo options
(use-package undo-tree
:defer t
:ensure t
:config (setq-default
;; Show diff
undo-tree-visualizer-diff t
;; Show timestamps
undo-tree-visualizer-timestamps t))
(global-undo-tree-mode t)
;;;;;;;;;;;;;;;;; Show hints about key combinations
(use-package which-key
:defer t