mass update
This commit is contained in:
parent
d5faa08253
commit
c613a6d0e3
21 changed files with 361 additions and 128 deletions
18
lua/plugins/venn.lua
Normal file
18
lua/plugins/venn.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
"jbyuki/venn.nvim",
|
||||
|
||||
config = function()
|
||||
vim.b.ve = "all"
|
||||
end,
|
||||
|
||||
keys = {
|
||||
{ "J", "<C-v>j:VBox<CR>", mode = "n", noremap = true },
|
||||
{ "K", "<C-v>k:VBox<CR>", mode = "n", noremap = true },
|
||||
{ "L", "<C-v>l:VBox<CR>", mode = "n", noremap = true },
|
||||
{ "H", "<C-v>h:VBox<CR>", mode = "n", noremap = true },
|
||||
-- draw a box by pressing "f" with visual selection,
|
||||
{ "f", ":VBox<CR>", mode = "v", noremap = true },
|
||||
},
|
||||
|
||||
lazy = true,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue