2021-02-21 02:59:11 +00:00
|
|
|
;; -*- lexical-binding: t; -*-
|
|
|
|
|
2021-02-20 19:58:09 +00:00
|
|
|
;; Tree-shaped undos
|
|
|
|
(use-package undo-tree
|
|
|
|
:demand t
|
|
|
|
:config
|
|
|
|
(global-undo-tree-mode)
|
2022-03-30 14:13:21 +00:00
|
|
|
:bind ("C-c C-r" . undo-tree-visualize)
|
|
|
|
:custom
|
|
|
|
(undo-tree-history-directory-alist
|
|
|
|
`(("." . ,(expand-file-name (concat user-emacs-directory "undo-history"))))))
|
2021-02-20 19:58:09 +00:00
|
|
|
|
|
|
|
(provide 'init-undo)
|