dotfiles/emacs/.emacs.d/config/init-undo.el
2021-02-20 21:59:11 -05:00

12 lines
190 B
EmacsLisp

;; -*- lexical-binding: t; -*-
;; 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)