Remove nvim-treesitter-context

This commit is contained in:
Oliver Davies 2024-11-25 08:03:59 +00:00
parent 4c5fd19f5a
commit 87a756a4fb
2 changed files with 0 additions and 4 deletions

View file

@ -93,7 +93,6 @@
yaml
]
))
nvim-treesitter-context
nvim-treesitter-textobjects
# LSP, linting and formatting

View file

@ -1,5 +1,4 @@
local configs = require "nvim-treesitter.configs"
local context = require "treesitter-context"
local ts_repeat_move = require "nvim-treesitter.textobjects.repeatable_move"
configs.setup {
@ -132,5 +131,3 @@ set({ "n", "o", "x" }, "f", ts_repeat_move.builtin_f)
set({ "n", "o", "x" }, "F", ts_repeat_move.builtin_F)
set({ "n", "o", "x" }, "t", ts_repeat_move.builtin_t)
set({ "n", "o", "x" }, "T", ts_repeat_move.builtin_T)
context.setup { enable = true }