25 lines
405 B
Lua
25 lines
405 B
Lua
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = 'TSUpdate',
|
|
main = 'nvim-treesitter.configs',
|
|
opts = {
|
|
ensure_installed = {
|
|
'diff',
|
|
'lua',
|
|
'html',
|
|
'css',
|
|
'javascript',
|
|
'typescript',
|
|
'tsx',
|
|
'markdown',
|
|
'markdown_inline'
|
|
},
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
indent = { enable = true }
|
|
}
|
|
}
|
|
|