nvim: plugins: Drop all text objects
Equivalent functionality can be achieved with what we have already enabled from mini or can be enabled via mini.
This commit is contained in:
parent
c7f9c233dc
commit
470482dfc6
2 changed files with 0 additions and 12 deletions
|
@ -1,8 +0,0 @@
|
|||
require("various-textobjs").setup({ keymaps = { useDefaults = false } })
|
||||
|
||||
vim.keymap.set({"o", "x"}, "ae", function () require("various-textobjs").entireBuffer() end)
|
||||
vim.keymap.set({"o", "x"}, "ii", function () require("various-textobjs").indentation(true, true) end)
|
||||
vim.keymap.set({"o", "x"}, "ai", function () require("various-textobjs").indentation(false, true) end)
|
||||
vim.keymap.set({"o", "x"}, "as", function () require("various-textobjs").subword(false) end)
|
||||
vim.keymap.set({"o", "x"}, "is", function () require("various-textobjs").subword(true) end)
|
||||
vim.keymap.set({"o", "x"}, "?" , function () require("various-textobjs").toNextClosingBracket() end)
|
|
@ -11,10 +11,6 @@ require "paq" {
|
|||
'SanchayanMaity/gitlinker.nvim' ,
|
||||
-- Quickfix
|
||||
'yorickpeterse/nvim-pqf' ,
|
||||
-- Text objects
|
||||
'wellle/targets.vim' ,
|
||||
'chrisgrieser/nvim-various-textobjs',
|
||||
'andymass/vim-matchup' ,
|
||||
-- Async jobs
|
||||
'nvim-lua/plenary.nvim' ,
|
||||
'tpope/vim-dispatch' ,
|
||||
|
|
Loading…
Reference in a new issue