astronvim_config/plugins/treesitter.lua
RingOfStorms (Joshua Bell) 2cd8efc1df asd
2023-04-11 16:59:01 -05:00

18 lines
362 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
opts = {
"all",
-- ensure_installed = "all",
-- auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
ident = { enable = true },
rainbow = {
enable = true,
extended_mode = true,
max_file_lines = nil,
},
},
}