diff --git a/nvim/dot-config/nvim/lua/plugins/multicursors.lua b/nvim/dot-config/nvim/lua/plugins/multicursors.lua new file mode 100644 index 0000000..80183e6 --- /dev/null +++ b/nvim/dot-config/nvim/lua/plugins/multicursors.lua @@ -0,0 +1,17 @@ +return { + "smoka7/multicursors.nvim", + event = "VeryLazy", + dependencies = { + "nvimtools/hydra.nvim", + }, + opts = {}, + cmd = { "MCstart", "MCvisual", "MCclear", "MCpattern", "MCvisualPattern", "MCunderCursor" }, + keys = { + { + mode = { "v", "n" }, + "m", + "MCstart", + desc = "Create a selection for selected text or word under the cursor", + }, + }, +}