dotfiles/emacs/.emacs.d/config/init-undo.el

10 lines
158 B
EmacsLisp
Raw Normal View History

2021-02-20 19:58:09 +00:00
;; Tree-shaped undos
(use-package undo-tree
:demand t
:config
(global-undo-tree-mode)
:bind ("C-c C-r" . undo-tree-visualize))
(provide 'init-undo)