diff --git a/home-manager/neovim/treesitter.lua b/home-manager/neovim/treesitter.lua index 9191baa..4db0e3e 100644 --- a/home-manager/neovim/treesitter.lua +++ b/home-manager/neovim/treesitter.lua @@ -1,9 +1,8 @@ require('nvim-treesitter.configs').setup({ - highlight = {enable = true, additional_vim_regex_highlighting = false}, - indent = {enable = true}, + highlight = { enable = true, additional_vim_regex_highlighting = false }, ensure_installed = { "bash", "c", "cpp", "css", "dockerfile", "hcl", "html", "javascript", - "json", "latex", "lua", "markdown", "nix", "python", "rust", "svelte", + "json", "latex", "lua", "markdown", "nix", "python", "rust", "svelte", "toml", "tsx", "typescript", "vim", "vue", "yaml" } })