diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-12-06 04:25:19 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-12-06 04:25:19 +0000 |
commit | f6a340af083372e9c30fc537d85c7ae2e6b8f67d (patch) | |
tree | 3f1da9d948d8b17d26a7c3fc2d698140f797f750 /init.el | |
parent | c6f7e3da161722ddc5188e435e5a6edb4312a99d (diff) |
added undo-tree
Diffstat (limited to '')
-rw-r--r-- | init.el | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -228,10 +228,13 @@ Restart works only on graphic display." (setq coding-system-for-read 'utf-8) (setq coding-system-for-write 'utf-8) - ;; PACKAGES -;; embark +(use-package undo-tree + :ensure t + :init + (global-undo-tree-mode)) + (use-package marginalia :ensure t :config |