diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index b2b4e00..e4d67c8 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -6,10 +6,38 @@ return { config.setup({ auto_install = true, + ensure_installed = { + "bash", + "css", + "html", + "javascript", + "json", + "lua", + "python", + "typescript", + "tsx", + "vue", + "yaml", + "c_sharp", + "rust", + "csv", + "dockerfile", + "editorconfig", + "json", + "jsdoc", + "jsonc", + "markdown", + "markdown_inline", + "nginx", + "proto", + "sql", + "toml", + "ssh_config", + "xml", + }, indent = { enabled = true }, highlight = { enabled = true, - additional_vim_regex_highlighting = true, }, }) end,