refactor: improve multicursor config
This commit is contained in:
@@ -194,13 +194,14 @@ return {
|
||||
config = function()
|
||||
local mc = require("multicursor-nvim")
|
||||
|
||||
mc.setup()
|
||||
mc.setup({
|
||||
-- set to true if you want multicursor undo history
|
||||
-- to clear when clearing cursors
|
||||
shallowUndo = false,
|
||||
|
||||
-- Customize how cursors look.
|
||||
vim.api.nvim_set_hl(0, "MultiCursorCursor", { link = "Cursor" })
|
||||
vim.api.nvim_set_hl(0, "MultiCursorVisual", { link = "Visual" })
|
||||
vim.api.nvim_set_hl(0, "MultiCursorDisabledCursor", { link = "Visual" })
|
||||
vim.api.nvim_set_hl(0, "MultiCursorDisabledVisual", { link = "Visual" })
|
||||
-- set to empty table to disable signs
|
||||
signs = { "⎸", "", "⎹" },
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user