nvim: add nvim-various-textobjs

This commit is contained in:
2025-12-20 11:15:37 +01:00
parent 292de198a6
commit a7c0178983
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
vim.pack.add({ "https://github.com/chrisgrieser/nvim-various-textobjs" })
local ok, oil = pcall(require, "various-textobjs")
if ok then
oil.setup({ keymaps = { useDefaults = true } })
else
print("plugin nvim-various-textobjs missing")
end