mirror of https://github.com/gabehf/nvim-conf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
436 B
15 lines
436 B
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" },
|
|
build = ":TSUpdate",
|
|
opts = function()
|
|
return require "configs.treesitter"
|
|
end,
|
|
config = function(_, opts)
|
|
-- dofile(vim.g.base46_cache .. "syntax")
|
|
-- dofile(vim.g.base46_cache .. "treesitter")
|
|
require("nvim-treesitter.configs").setup(opts)
|
|
end,
|
|
}
|