10 lines
326 B
Lua
10 lines
326 B
Lua
vim.pack.add({ "https://github.com/chrisgrieser/nvim-various-textobjs" })
|
|
|
|
local ok, vto = pcall(require, "various-textobjs")
|
|
if ok then
|
|
vto.setup({ keymaps = { useDefaults = true, diabledDefaults = { 'r' } } })
|
|
vim.keymap.set({ 'o', 'x' }, ' }', vto.restOfParagraph)
|
|
else
|
|
print("plugin nvim-various-textobjs missing")
|
|
end
|