Neovim: Add treesitter-context plugin

This commit is contained in:
Tony Grosinger 2024-05-29 11:18:59 -07:00
parent 417fb2b9b6
commit 94de21bc88

View File

@ -0,0 +1,11 @@
-- 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,
},
},
}