summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)))