feat(nvim): add nvim treesitter context

dev-docs
Moritz Böhme 2023-07-29 17:01:53 +02:00
parent 59a4dc527a
commit f5ce0b73bd
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
1 changed files with 7 additions and 0 deletions

View File

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