neovimconfig/lua/plugin/treesitter-context.lua
2025-02-23 22:30:52 +01:00

14 lines
344 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
}
}