feat(nvim): add nvim treesitter context

This commit is contained in:
Moritz Böhme 2023-07-29 17:01:53 +02:00
parent 59a4dc527a
commit f5ce0b73bd
Signed by: moritz
GPG key ID: 970C6E89EB0547A9

View file

@ -261,5 +261,12 @@ with builtins;
require("nvim-surround").setup({})
'';
}
{
plugin = nvim-treesitter-context;
event = [ "BufReadPost" "BufNewFile" ];
conf = ''
require("treesitter-context").setup({})
'';
}
];
}