feat(edgy): added LazyVim resize keymaps to edgy

This commit is contained in:
Folke Lemaitre 2023-06-12 17:22:01 +02:00
parent 84986b3729
commit ba49339fe3
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -90,6 +90,24 @@ return {
}, },
"neo-tree", "neo-tree",
}, },
keys = {
-- increase width
["<c-Right>"] = function(win)
win:resize("width", 2)
end,
-- decrease width
["<c-Left>"] = function(win)
win:resize("width", -2)
end,
-- increase height
["<c-Up>"] = function(win)
win:resize("height", 2)
end,
-- decrease height
["<c-Down>"] = function(win)
win:resize("height", -2)
end,
},
}, },
}, },