From 529898343aed91872813833b1fa6bdf688cc4b2e Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Thu, 12 Feb 2026 18:21:04 +0300 Subject: 12.02.2026 --- config/nvim/lua/plugins/resize.lua | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) (limited to 'config/nvim/lua/plugins/resize.lua') diff --git a/config/nvim/lua/plugins/resize.lua b/config/nvim/lua/plugins/resize.lua index bdb3ff6..ea3ce0c 100644 --- a/config/nvim/lua/plugins/resize.lua +++ b/config/nvim/lua/plugins/resize.lua @@ -1,4 +1,34 @@ return { name = "resize", dir = "~/.config/nvim/lua/myplugins", -} + keys = { + { + "", + function() + require("myplugins.resize").ResizeLeft() + end, + desc = "Resize window left", + }, + { + "", + function() + require("myplugins.resize").ResizeRight() + end, + desc = "Resize window right", + }, + { + "", + function() + require("myplugins.resize").ResizeUp() + end, + desc = "Resize window up", + }, + { + "", + function() + require("myplugins.resize").ResizeDown() + end, + desc = "Resize window down", + }, + }, +} \ No newline at end of file -- cgit v1.2.3