25 lines
542 B
Lua
25 lines
542 B
Lua
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
branch = "main",
|
|
build = ':TSUpdate',
|
|
main = 'nvim-treesitter.config',
|
|
opts = {
|
|
ensure_installed = {
|
|
'c',
|
|
'cpp',
|
|
'lua',
|
|
'vim',
|
|
'vimdoc',
|
|
'markdown',
|
|
'markdown_inline',
|
|
'query',
|
|
'c_sharp',
|
|
'yaml',
|
|
},
|
|
auto_install = true,
|
|
sync_install = false,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
},
|
|
}
|