summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-17 06:24:40 +0300
committerGravatar Uko Kokņevičs2025-10-17 06:24:40 +0300
commitf6a050bb6ec6120f4bf7e3af6725c63104d8919f (patch)
treea60835a6b576f3b44e327ebc5f666578e3970701
parentemacs: Slightly decrease tab-line font size (diff)
downloaddotfiles-f6a050bb6ec6120f4bf7e3af6725c63104d8919f.tar.gz
dotfiles-f6a050bb6ec6120f4bf7e3af6725c63104d8919f.tar.xz
dotfiles-f6a050bb6ec6120f4bf7e3af6725c63104d8919f.zip
emacs: Move warnings configuration higher up
-rw-r--r--emacs/.config/emacs/init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/.config/emacs/init.el b/emacs/.config/emacs/init.el
index 560053f..0b64c06 100644
--- a/emacs/.config/emacs/init.el
+++ b/emacs/.config/emacs/init.el
@@ -180,6 +180,10 @@
180 :config 180 :config
181 (exec-path-from-shell-initialize)) 181 (exec-path-from-shell-initialize))
182 182
183(use-package warnings
184 :straight '(warnings :type built-in)
185 :custom (warning-suppress-types '(comp)))
186
183(defun arkta/update-packages () 187(defun arkta/update-packages ()
184 (interactive) 188 (interactive)
185 (straight-pull-all) 189 (straight-pull-all)
@@ -435,7 +439,3 @@
435 (unless (treesit-language-available-p name) 439 (unless (treesit-language-available-p name)
436 (treesit-install-language-grammar name)))) 440 (treesit-install-language-grammar name))))
437 treesit-language-source-alist)) 441 treesit-language-source-alist))
438
439(use-package warnings
440 :straight '(warnings :type built-in)
441 :custom (warning-suppress-types '(comp)))