nvim-config/lua/custom/plugins/multicursor.lua
2024-02-16 15:45:53 +01:00

17 lines
399 B
Lua

return {
"smoka7/multicursors.nvim",
event = "VeryLazy",
dependencies = {
'smoka7/hydra.nvim',
},
opts = {},
cmd = { 'MCstart', 'MCvisual', 'MCclear', 'MCpattern', 'MCvisualPattern', 'MCunderCursor' },
keys = {
{
mode = { 'v', 'n' },
'<Leader>m',
'<cmd>MCstart<cr>',
desc = 'Create a selection for selected text or word under the cursor',
},
},
}