about summary refs log tree commit diff
path: root/emacs-elisp/packages/undotree.el
blob: 02ec1df18866bb72507ce01d8b326aeb9163f05a (plain)
1
2
3
4
5
6
;; Undo-Tree replaces the normal undo with advanced Undo Control
;;; https://gitlab.com/tsc25/undo-tree
(use-package undo-tree)
(global-undo-tree-mode 1)
(setq undo-tree-history-directory-alist
      `(("." . ,(concat user-emacs-directory "undo"))))