dotfiles/nvim/lua/custom/plugins/nvim-treesitter-context.lua

12 lines
297 B
Lua
Raw Normal View History

2024-05-29 11:18:59 -07:00
-- Display context that has scrolled off the top of the screen.
-- For example, signature of the current function, or if-case.
-- https://github.com/nvim-treesitter/nvim-treesitter-context
return {
{
'nvim-treesitter/nvim-treesitter-context',
opts = {
max_lines = 5,
},
},
}