From d23725b65918a70e4af315249eb6ebe7ec643faa Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 24 Feb 2024 20:22:10 -0600 Subject: [PATCH] fix(nvim): make `+` & `-` work with window resizing Hydra --- dots/.config/nvim/lua/plugins/configs/hydra.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/configs/hydra.lua b/dots/.config/nvim/lua/plugins/configs/hydra.lua index 663f4d7d..143e2702 100644 --- a/dots/.config/nvim/lua/plugins/configs/hydra.lua +++ b/dots/.config/nvim/lua/plugins/configs/hydra.lua @@ -11,6 +11,8 @@ return { { "h", desc = "> Hydra" }, { ">" }, { "<" }, + { "+" }, + { "-" }, }, event = { "BufReadPre", "BufNewFile" }, config = function() @@ -117,11 +119,6 @@ return { name = "Window Sizing", mode = "n", body = "", - config = { - { - position = "bottom-right", - }, - }, heads = { { "<", "2<" }, { ">", "2>", { desc = "←/→" } },