1
0
Fork 0

emacs: add undo-tree minor mode.

This commit is contained in:
Kevin Baensch 2021-11-25 22:15:19 +01:00
parent 2d3ca78643
commit f855cf3f1e
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ config, lib, ... }:
with lib;
mkIf (elem "emacs::undo-tree" config.machine.pkgs) {
programs.emacs.init.usePackage.undo-tree = {
enable = true;
hook = [ "(after-init . global-undo-tree-mode)" ];
config = ''
(setq undo-tree-visualizer-diff 't)
(setq undo-tree-auto-save-history 't)
(setq undo-tree-enable-undo-in-region 't)
(setq undo-tree-history-directory-alist '(("." . "~/.emacs_undo")))
'';
};
}