neovim-confs/lua/plugins/configs/treesitter.lua

22 lines
386 B
Lua
Raw Normal View History

local present, treesitter = pcall(require, "nvim-treesitter.configs")
2021-11-17 06:30:57 +01:00
if not present then
return
2021-06-25 18:06:13 +02:00
end
local options = {
ensure_installed = {
"lua",
"vim",
},
highlight = {
enable = true,
use_languagetree = true,
},
}
-- check for any override
options = nvchad.load_override(options, "nvim-treesitter/nvim-treesitter")
treesitter.setup(options)