From 2884934bc67ffd9777e9ebd63e0ae57b22878893 Mon Sep 17 00:00:00 2001 From: Georgi Chochev Date: Mon, 26 Feb 2024 17:23:01 +0200 Subject: [PATCH] fix: [master] Should default to false --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 0d19b081..739cdf2b 100644 --- a/init.lua +++ b/init.lua @@ -772,7 +772,7 @@ require('lazy').setup({ require('nvim-treesitter.configs').setup { ensure_installed = { 'bash', 'c', 'html', 'lua', 'markdown', 'vim', 'vimdoc' }, -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) - auto_install = true, + auto_install = false, highlight = { enable = true }, indent = { enable = true }, }