mass update

This commit is contained in:
Dario48 2025-10-08 21:24:37 +02:00
commit c613a6d0e3
21 changed files with 361 additions and 128 deletions

18
lua/plugins/venn.lua Normal file
View 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,
}