from packer to lazy

This commit is contained in:
2025-12-17 21:32:34 +07:00
parent 40aee7d3ce
commit 3c21e12bf3
38 changed files with 743 additions and 672 deletions

View File

@@ -1,7 +1,14 @@
require('nvim-treesitter.configs').setup {
highlight = {
enable = true,
-- additional_vim_regex_highlighting = false
additional_vim_regex_highlighting = true
},
-- 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
}
}
}