Home Gen322 @ 2024-09-22-17:35

This commit is contained in:
Jonas Röger 2024-09-22 17:35:52 +02:00
parent 78a5a3a114
commit 138600351b
2 changed files with 4 additions and 1 deletions

View File

@ -64,6 +64,7 @@
arduino arduino
bat bat
chromium chromium
drawio
ffmpeg ffmpeg
firefox firefox
fzf fzf

View File

@ -101,11 +101,13 @@
("C-TAB" . 'copilot-accept-completion-by-word) ("C-TAB" . 'copilot-accept-completion-by-word)
("C-<tab>" . 'copilot-accept-completion-by-word))) ("C-<tab>" . 'copilot-accept-completion-by-word)))
(add-hook! 'after-change-major-mode-hook #'undo-tree-mode)
(after! undo-tree (after! undo-tree
(global-undo-tree-mode)
(setq undo-tree-auto-save-history t) (setq undo-tree-auto-save-history t)
(setq undo-tree-enable-undo-in-region nil)
(setq undo-tree-history-directory-alist '(("." . "~/.cache/doom/undo")))) (setq undo-tree-history-directory-alist '(("." . "~/.cache/doom/undo"))))
(after! markdown-mode (after! markdown-mode
(setq markdown-split-window-direction 'right) (setq markdown-split-window-direction 'right)
(setq markdown-command "pandoc -t html5 -f markdown_mmd --embed-resources --standalone --mathjax --quiet --highlight-style=zenburn") (setq markdown-command "pandoc -t html5 -f markdown_mmd --embed-resources --standalone --mathjax --quiet --highlight-style=zenburn")