first commit

This commit is contained in:
Zacharias-Brohn
2025-01-11 11:41:27 +01:00
parent d7a6942b3c
commit 24bbfbda9f
15 changed files with 569 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
local opts = { noremap=true, silent=true }
require("bufresize").setup({
register = {
keys = {
{ "n", "<C-w><", "<C-w><", opts },
{ "n", "<C-w>>", "<C-w>>", opts },
{ "n", "<C-w>+", "<C-w>+", opts },
{ "n", "<C-w>-", "<C-w>-", opts },
{ "n", "<C-w>_", "<C-w>_", opts },
{ "n", "<C-w>=", "<C-w>=", opts },
{ "n", "<C-w>|", "<C-w>|", opts },
{ "", "<LeftRelease>", "<LeftRelease>", opts },
{ "i", "<LeftRelease>", "<LeftRelease><C-o>", opts },
},
trigger_events = { "BufWinEnter", "WinEnter" },
},
resize = {
keys = {},
trigger_events = { "VimResized" },
increment = false,
},
})