35 lines
575 B
Lua
35 lines
575 B
Lua
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate',
|
|
opts = {
|
|
ensure_installed = {
|
|
'lua',
|
|
'vim',
|
|
'vimdoc',
|
|
'rust',
|
|
'typescript',
|
|
'javascript',
|
|
'html',
|
|
'css',
|
|
'scss',
|
|
'json',
|
|
'sql',
|
|
'nix',
|
|
'bash',
|
|
'yaml',
|
|
'dockerfile',
|
|
'markdown',
|
|
'markdown_inline',
|
|
'c',
|
|
'cpp',
|
|
'python',
|
|
'toml',
|
|
'astro',
|
|
'vue',
|
|
'java',
|
|
},
|
|
auto_install = true,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
},
|
|
}
|