From 9c3d194cec3c0f5872797fa389452eac79f19a37 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 20 Jan 2025 14:26:44 -0500 Subject: [PATCH] switch treesit-auto-install to always automatically install, no prompt --- emacs.d/lang-modes.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs.d/lang-modes.el b/emacs.d/lang-modes.el index f5445a6..badc5a5 100644 --- a/emacs.d/lang-modes.el +++ b/emacs.d/lang-modes.el @@ -8,7 +8,7 @@ (use-package treesit-auto :ensure t :custom - (treesit-auto-install 'prompt) + (treesit-auto-install t) :config (treesit-auto-add-to-auto-mode-alist 'all) (global-treesit-auto-mode))