Nvim: fixed treesitter-context

This commit is contained in:
pr0c3550r 2023-06-25 21:13:28 +02:00
parent 58f2fd2851
commit 2fd4155054

View file

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