neovimconfig/lua/plugin/treesitter-context.lua
2023-12-09 15:46:50 +01:00

14 lines
248 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter-context",
event = "VeryLazy",
config = function ()
require('treesitter-context').setup{
enable = true,
max_lines = 0,
min_window_height = 0,
line_numbers = true,
}
end
}
}