17 lines
347 B
Lua
17 lines
347 B
Lua
local status, plugin = pcall(require,'nvim-treesitter.configs')
|
|
if not status then
|
|
print('Plugin Error: ', plugin)
|
|
return
|
|
end
|
|
plugin.setup {
|
|
ensure_installed = {},
|
|
|
|
auto_install = false,
|
|
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true,
|
|
disable = {"css", "html" },
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
} |