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 | |
parent | c6f7e3da161722ddc5188e435e5a6edb4312a99d (diff) |
added undo-tree
-rw-r--r-- | custom.el | 5 | ||||
-rw-r--r-- | init.el | 7 |
2 files changed, 8 insertions, 4 deletions
@@ -6,10 +6,11 @@ '(company-show-quick-access t nil nil "Customized with use-package company") '(custom-safe-themes '("3d2e532b010eeb2f5e09c79f0b3a277bfc268ca91a59cdda7ffd056b868a03bc" default)) - '(display-line-numbers-type 'relative) + '(display-line-numbers-type 'relative t) '(display-time-mode t) + '(ispell-dictionary nil) '(package-selected-packages - '(embark-consult embark marginalia markdown-mode eglot helm popup async notmuch ivy calfw-org calfw unicode-fonts deft cider org-roam org yasnippet-snippets which-key vterm use-package rainbow-delimiters pdf-tools paredit magit ledger-mode gruvbox-theme flycheck expand-region evil elpy elfeed-score diminish counsel cmake-mode browse-kill-ring beacon auto-package-update amx ace-window ace-jump-mode)) + '(undo-tree embark-consult embark marginalia markdown-mode eglot helm popup async notmuch ivy calfw-org calfw unicode-fonts deft cider org-roam org yasnippet-snippets which-key vterm use-package rainbow-delimiters pdf-tools paredit magit ledger-mode gruvbox-theme flycheck expand-region evil elpy elfeed-score diminish counsel cmake-mode browse-kill-ring beacon auto-package-update amx ace-window ace-jump-mode)) '(show-paren-mode t) '(tool-bar-mode nil)) (custom-set-faces @@ -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 |