You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/lua/custom/plugins/configs/treesitter-context.lua

20 lines
216 B
Lua

local ok, tscontext = pcall(require,"treesitter-context")
if not ok then return end
local M = {}
local config = {
enable = true
}
M.config = config
function M.setup()
tscontext.setup(config)
end
return M