diff options
author | listout <listout@protonmail.com> | 2022-10-24 00:09:52 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-10-24 00:09:52 +0530 |
commit | cc66e046023d4de59d03e7cef6a2552ad26d334a (patch) | |
tree | 1736e3a11ab8aa6e3d66216408fd1587006fbd46 | |
parent | 93b1b9ea58499a59cd66423eb60b1d7315d2955c (diff) |
nvim: tresitter: don't auto install parsers
Signed-off-by: listout <listout@protonmail.com>
-rw-r--r-- | lua/plugins/treesitter.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 7141d3d..03c3038 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -6,7 +6,7 @@ require'nvim-treesitter.configs'.setup { sync_install = true, -- Automatically install missing parsers when entering buffer - auto_install = true, + auto_install = false, -- List of parsers to ignore installing (for "all") ignore_install = { "javascript" }, @@ -29,10 +29,4 @@ require'nvim-treesitter.configs'.setup { }, indent = true, - - --[[ - [indent = { - [ enable = true, - [}, - ]] } |