Skip to content

Commit

Permalink
fix(plugins): lazy load vim-visual-multi
Browse files Browse the repository at this point in the history
  • Loading branch information
ecosse3 committed Jan 29, 2023
1 parent 16d3688 commit 157fe44
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lua/config/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,15 @@ return {
{ "dhruvasagar/vim-table-mode", ft = { "markdown" } },
{
"mg979/vim-visual-multi",
lazy = false,
keys = {
"<C-n>",
"<C-Up>",
"<C-Down>",
"<S-Up>",
"<S-Down>",
"<S-Left>",
"<S-Right>",
},
config = function()
vim.g.VM_leader = ";"
end,
Expand Down

0 comments on commit 157fe44

Please sign in to comment.