include loading of treesitter hlgroups

This commit is contained in:
siduck 2023-10-28 09:34:28 +05:30
parent da85f7fbcd
commit 48f1bb702d
2 changed files with 2 additions and 0 deletions

View File

@ -104,6 +104,7 @@ M.base46 = {
"nvimtree",
"statusline",
"syntax",
"treesitter",
"tbline",
"telescope",
"whichkey",

View File

@ -77,6 +77,7 @@ local default_plugins = {
end,
config = function(_, opts)
dofile(vim.g.base46_cache .. "syntax")
dofile(vim.g.base46_cache .. "treesitter")
require("nvim-treesitter.configs").setup(opts)
end,
},