dotfiles/emacs/.emacs.d/config/init-undo.el
Jeremy Dormitzer 1227a9f837 Formatting
2021-04-05 10:47:04 -04:00

11 lines
189 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)