summaryrefslogtreecommitdiff
path: root/lua/tjk/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tjk/plugins/treesitter.lua')
-rw-r--r--lua/tjk/plugins/treesitter.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/tjk/plugins/treesitter.lua b/lua/tjk/plugins/treesitter.lua
index 925fb13..835e1af 100644
--- a/lua/tjk/plugins/treesitter.lua
+++ b/lua/tjk/plugins/treesitter.lua
@@ -11,9 +11,7 @@ return {
"windwp/nvim-ts-autotag", -- close tags in html/xml type languages
opts = {
per_filetype = {
- ["html"] = {
- enable_close = true
- }
+ ["html"] = { enable_close = true },
}
}
},
@@ -24,7 +22,7 @@ return {
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "comment",
"javascript", "html", "css", "scss", "python", "php" },
auto_install = true, -- install available parsers when entering new buffers
- highlight = { enable = true, disable = { "yaml", "bash", "latex" } },
+ highlight = { enable = true, disable = { "yaml" } },
indent = { enable = true, disable = { "yaml" } },
--playground = { enable = true }, -- treesitter debug
})