diff options
Diffstat (limited to 'config/nvim/lua/plugins/treesitter.lua')
| -rw-r--r-- | config/nvim/lua/plugins/treesitter.lua | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/config/nvim/lua/plugins/treesitter.lua b/config/nvim/lua/plugins/treesitter.lua index a5ec534..2884f39 100644 --- a/config/nvim/lua/plugins/treesitter.lua +++ b/config/nvim/lua/plugins/treesitter.lua @@ -6,7 +6,21 @@ return { enable = true, additional_vim_regex_highlighting = false, }, - ensure_installed = "all", + ensure_installed = { + "go", + "lua", + "javascript", + "typescript", + "json", + "yaml", + "python", + "bash", + "markdown", + "html", + "css", + "rust", + "templ", + }, ignore_install = { "gdhsader", "phpdoc", "org" }, indent = { enable = true }, auto_install = true, @@ -35,7 +49,6 @@ return { }, }, }, - build = ":TSUpdate", dependencies = { { "nvim-treesitter/nvim-treesitter-textobjects" }, { |
