14 lines
248 B
Lua
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
|
|
}
|
|
}
|