Treesitter update

This commit is contained in:
Chris
2025-12-10 14:19:07 +00:00
parent d53821dbf7
commit a086657031
4 changed files with 198 additions and 107 deletions

View File

@@ -2,10 +2,11 @@
return {
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
branch = 'main',
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
opts = {
ensure_installed = {
config = function()
require('nvim-treesitter').setup {}
require('nvim-treesitter').install {
'bash',
'c',
'diff',
@@ -17,18 +18,13 @@ return {
'query',
'vim',
'vimdoc',
},
-- Autoinstall languages that are not installed
auto_install = true,
highlight = {
enable = true,
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
-- If you are experiencing weird indenting issues, add the language to
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
additional_vim_regex_highlighting = { 'ruby' },
},
indent = { enable = true, disable = { 'ruby' } },
},
'php',
'javascript',
'typescript',
'json',
}
end,
opts = {},
-- There are additional nvim-treesitter modules that you can use to interact
-- with nvim-treesitter. You should go explore a few and see what interests you:
--