1
0
Fork 0
mirror of https://github.com/CompeyDev/my-nvim-setup.git synced 2025-04-13 18:50:53 +01:00
my-nvim-setup/lua/plugins/configs/treesitter.lua
2022-05-10 20:15:08 +05:30

21 lines
386 B
Lua

local present, treesitter = pcall(require, "nvim-treesitter.configs")
if not present then
return
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)