diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 9902a46..ddcbd67 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,26 +1,9 @@ require('nvim-treesitter.configs').setup({ - highlight = { - enable = true, - additional_vim_regex_highlighting = false, - }, - indent = { - enable = true, - }, - ensure_installed = { - "bash", - "c", - "cpp", - "html", - "javascript", - "json", - "lua", - "markdown", - "python", - "rust", - "svelte", - "typescript", - "vim", - "vue", - "yaml", - }, + highlight = {enable = true, additional_vim_regex_highlighting = false}, + indent = {enable = true}, + ensure_installed = { + "bash", "c", "cpp", "css", "dockerfile", "html", "javascript", "json", + "latex", "lua", "markdown", "python", "rust", "svelte", "toml", "tsx", + "typescript", "vim", "vue", "yaml" + } })