Dot_Files/.config/nvim/lua/plugins/configs/treesitter.lua

19 lines
324 B
Lua
Raw Normal View History

2022-01-10 09:55:15 -06:00
local nvim_treesitter = require("nvim-treesitter.configs")
2022-01-08 15:24:29 -06:00
nvim_treesitter.setup {
highlight = {
enable = true,
additional_vim_regex_highlighting = true,
disable = { "yaml" },
},
matchup = {
enable = true,
},
-- indent = {
-- disable = { 'yaml' }
-- },
autotag = {
enable = true
}
}