feat(nvim): add treesitter-context plugin

This commit is contained in:
Stefan Imhoff
2022-09-02 09:00:21 +02:00
parent 2a0772cfa2
commit d21761ff42
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
-- nvim-treesitter-context https://github.com/nvim-treesitter/nvim-treesitter-context
local status_ok, context = pcall(require, "treesitter-context")
if not status_ok then
return
end
context.setup()