Skip to content

Commit

Permalink
feat(plugins): change vim-visual-multi to multicursors.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
ecosse3 committed Jul 16, 2023
1 parent 0e29a84 commit 1c34619
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions lua/config/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -246,21 +246,27 @@ return {
{ "tpope/vim-repeat", lazy = false },
{ "tpope/vim-speeddating", lazy = false },
{ "dhruvasagar/vim-table-mode", ft = { "markdown" } },
{
"mg979/vim-visual-multi",
keys = {
"<C-n>",
"<C-Up>",
"<C-Down>",
"<S-Up>",
"<S-Down>",
"<S-Left>",
"<S-Right>",
},
config = function()
vim.g.VM_leader = ";"
end,
},
{
"smoka7/multicursors.nvim",
event = "VeryLazy",
dependencies = {
'nvim-treesitter/nvim-treesitter',
'smoka7/hydra.nvim',
},
config = true,
keys = {
{
'<LEADER>m',
'<CMD>MCstart<CR>',
desc = 'multicursor',
},
{
'<C-Down>',
'<CMD>MCunderCursor<CR>',
desc = 'multicursor down',
},
},
},
{
"nacro90/numb.nvim",
lazy = false,
Expand Down

0 comments on commit 1c34619

Please sign in to comment.