fix(nvim): make + & - work with window resizing Hydra

This commit is contained in:
Price Hiller 2024-02-24 20:22:10 -06:00
parent d3d7677861
commit d23725b659
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -11,6 +11,8 @@ return {
{ "<leader>h", desc = "> Hydra" },
{ "<C-w>>" },
{ "<C-w><" },
{ "<C-w>+" },
{ "<C-w>-" },
},
event = { "BufReadPre", "BufNewFile" },
config = function()
@ -117,11 +119,6 @@ return {
name = "Window Sizing",
mode = "n",
body = "<C-w>",
config = {
{
position = "bottom-right",
},
},
heads = {
{ "<", "2<C-w><" },
{ ">", "2<C-w>>", { desc = "←/→" } },