main
59c7d64 ยท 8 days ago 139 commits
 1return {
 2	"mg979/vim-visual-multi",
 3	branch = "master",
 4	event = "VeryLazy",
 5	init = function()
 6		vim.g.VM_maps = {
 7			["Find Under"] = "<C-d>", -- Select word and add next occurrence
 8			["Find Subword Under"] = "<C-d>", -- Same for subwords
 9			["Find Next"] = "<C-d>", -- Continue adding next occurrence
10
11			["Add Cursor Down"] = "<C-M-Down>",
12			["Add Cursor Up"] = "<C-M-Up>",
13			["Add Cursor At Pos"] = "<M-LeftMouse>",
14
15			["Visual Cursors"] = "<C-d>", -- Add cursor on each line in visual
16			["Insert Mode"] = "i",
17			["Append Mode"] = "a",
18			["Visual Mode"] = "v",
19		}
20
21		-- Settings
22		vim.g.VM_theme = "iceblue"
23		vim.g.VM_highlight_matches = "red"
24	end,
25}