nvim_dotfiles/lua/plugins/treesitter.lua
saarsena@gmail.com 085347ddac woohooo
2026-04-08 06:38:52 -04:00

36 lines
689 B
Lua

return {
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
main = 'nvim-treesitter.configs',
opts = {
ensure_installed = {
'bash',
'c',
'cpp',
'css',
'diff',
'go',
'html',
'java',
'javascript',
'json',
'lua',
'luadoc',
'markdown',
'markdown_inline',
'python',
'query',
'toml',
'typescript',
'vim',
'vimdoc',
'yaml',
},
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = { 'ruby' },
},
indent = { enable = true, disable = { 'ruby' } },
},
}