15 lines
269 B
Lua
15 lines
269 B
Lua
-- Nvim Treesitter configurations and abstraction layer
|
|
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
enabled = true,
|
|
lazy = false,
|
|
priority = 40,
|
|
build = ':TSUpdate',
|
|
opts = {
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = true
|
|
}
|
|
}
|
|
}
|