add multicursor plugin
This commit is contained in:
parent
dbe8be3a8b
commit
83fd2df20b
5 changed files with 148 additions and 194 deletions
15
lua/custom/plugins/multicursor.lua
Normal file
15
lua/custom/plugins/multicursor.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
'mg979/vim-visual-multi',
|
||||
event = "BufReadPre",
|
||||
init = function()
|
||||
vim.g.VM_maps = {
|
||||
["Find Under"] = "<M-n>",
|
||||
-- ["Select Next"] = "<C-n>",
|
||||
-- ["Select Prev"] = "<C-p>",
|
||||
-- ["Add Cursor Down"] = "<C-j>",
|
||||
-- ["Add Cursor Up"] = "<C-k>",
|
||||
-- ["Add Cursor to Next"] = "<C-n>",
|
||||
-- ["Add Cursor to Prev"] = "<C-p
|
||||
}
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue