Added new plugins and modified remaps

This commit is contained in:
2024-03-17 23:46:09 +01:00
parent 75da28e181
commit 100331949d
8 changed files with 40 additions and 41 deletions

View File

@@ -98,16 +98,5 @@ return {
},
},
})
-- local ts_repeat_move = require("nvim-treesitter.textobjects.repeatable_move")
--
-- -- vim way: ; goes to the direction you were moving.
-- vim.keymap.set({ "n", "x", "o" }, ";", ts_repeat_move.repeat_last_move)
-- vim.keymap.set({ "n", "x", "o" }, ",", ts_repeat_move.repeat_last_move_opposite)
--
-- -- Optionally, make builtin f, F, t, T also repeatable with ; and ,
-- vim.keymap.set({ "n", "x", "o" }, "f", ts_repeat_move.builtin_f)
-- vim.keymap.set({ "n", "x", "o" }, "F", ts_repeat_move.builtin_F)
-- vim.keymap.set({ "n", "x", "o" }, "t", ts_repeat_move.builtin_t)
-- vim.keymap.set({ "n", "x", "o" }, "T", ts_repeat_move.builtin_T)
end,
}