summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el14
1 files changed, 9 insertions, 5 deletions
diff --git a/init.el b/init.el
index 38059a2..7e12985 100644
--- a/init.el
+++ b/init.el
@@ -176,11 +176,6 @@
176 :config 176 :config
177 (amx-mode +1)) 177 (amx-mode +1))
178 178
179(use-package auto-compile
180 :straight t
181 :hook ((emacs-lisp-mode . auto-compile-on-load-mode)
182 (emacs-lisp-mode . auto-compile-on-save-mode)))
183
184(use-package c-ts-mode 179(use-package c-ts-mode
185 :after treesit 180 :after treesit
186 :straight '(c-ts-mode :type built-in) 181 :straight '(c-ts-mode :type built-in)
@@ -357,6 +352,15 @@
357 :documentRangeFormattingProvider 352 :documentRangeFormattingProvider
358 :documentOnTypeFormattingProvider))) 353 :documentOnTypeFormattingProvider)))
359 354
355(use-package elisp-mode
356 :straight '(elisp-mode :type built-in)
357 :mode ("\\.el\\'" . emacs-lisp-mode)
358 :init
359 (use-package auto-compile
360 :straight t
361 :hook ((emacs-lisp-mode . auto-compile-on-load-mode)
362 (emacs-lisp-mode . auto-compile-on-save-mode))))
363
360(use-package elixir-mode 364(use-package elixir-mode
361 :straight t 365 :straight t
362 :mode "\\.exs?\\'" 366 :mode "\\.exs?\\'"