20 lines
641 B
Lua
20 lines
641 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.setup()
|
||
|
require'nvim-treesitter.configs'.setup {
|
||
|
ensure_installed = "maintained",
|
||
|
sync_install = false,
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
|
||
|
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
||
|
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
||
|
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
||
|
-- Instead of true it can also be a list of languages
|
||
|
additional_vim_regex_highlighting = false
|
||
|
}
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|