diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-12-07 14:45:13 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-12-07 14:45:13 +0000 |
commit | a4afa04a34dcbd06bd2d87ed45d2a421afd9f795 (patch) | |
tree | e076fcc4fc0e43d8e01cf59817f03bdc071afb8d /init.el | |
parent | 201f45a2fc48f3c2cc4f3472290dd224f3889ac7 (diff) |
moving undo files into cache directory
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -428,6 +428,7 @@ Restart works only on graphic display." (use-package undo-tree :ensure t :init + (setq undo-tree-history-directory-alist '(("." . "~/.emacs.d./.cache"))) ; from https://github.com/syl20bnr/spacemacs/issues/15426 (global-undo-tree-mode)) (use-package marginalia @@ -439,7 +440,6 @@ Restart works only on graphic display." (use-package embark :ensure t - :bind (("C-." . embark-act) ;; pick some comfortable binding ("C-;" . embark-dwim) ;; good alternative: M-. |