From 51600d453fd8f09341b16dc311f3fc10f1b92a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Fri, 28 Feb 2025 12:35:24 +0100 Subject: [PATCH] Home Gen454 @ 2025-02-28-12:33 --- modules/home/doom/static/config.el | 9 +-------- modules/home/doom/static/init.el | 6 +++--- modules/home/doom/static/packages.el | 1 - 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/modules/home/doom/static/config.el b/modules/home/doom/static/config.el index 764cbd5..56d1b83 100644 --- a/modules/home/doom/static/config.el +++ b/modules/home/doom/static/config.el @@ -101,13 +101,6 @@ ("C-TAB" . 'copilot-accept-completion-by-word) ("C-" . 'copilot-accept-completion-by-word))) -(add-hook! 'prog-mode-hook #'undo-tree-mode) -(after! undo-tree - (setq undo-tree-auto-save-history t) - (setq undo-tree-enable-undo-in-region nil) - (setq undo-tree-history-directory-alist '(("." . "~/.cache/doom/undo")))) - - (after! markdown-mode (setq markdown-split-window-direction 'right) (setq markdown-command "pandoc -t html5 -f markdown_mmd --embed-resources --standalone --mathjax --quiet --highlight-style=zenburn") @@ -117,7 +110,7 @@ (require 'dap-cpptools) -(after! latex +(after! auctex (add-hook! 'LaTeX-mode-hook 'lsp) (map! :map LaTeX-mode-map :localleader diff --git a/modules/home/doom/static/init.el b/modules/home/doom/static/init.el index 710a9ef..901d3a1 100644 --- a/modules/home/doom/static/init.el +++ b/modules/home/doom/static/init.el @@ -70,9 +70,9 @@ :emacs dired ; making dired pretty [functional] electric ; smarter, keyword-based electric-indent - ;;ibuffer ; interactive buffer management + (ibuffer +icons) ; interactive buffer management - undo ; persistent, smarter undo for your inevitable mistakes + (undo +tree) ; persistent, smarter undo for your inevitable mistakes vc ; version-control and Emacs, sitting in a tree :term @@ -112,7 +112,7 @@ :os (:if (featurep :system 'macos) macos) ; improve compatibility with macOS - ;;tty ; improve the terminal Emacs experience + (tty +osc) ; improve the terminal Emacs experience :lang ;;agda ; types of types of types of types... diff --git a/modules/home/doom/static/packages.el b/modules/home/doom/static/packages.el index 00c31b2..698b8f3 100644 --- a/modules/home/doom/static/packages.el +++ b/modules/home/doom/static/packages.el @@ -57,7 +57,6 @@ (package! direnv) (package! copilot) -(package! undo-tree) (package! pdf-tools) (package! eww) (package! pandoc-mode)