feat(edgy): added LazyVim resize keymaps to edgy

This commit is contained in:
Folke Lemaitre committed 2023-06-12 17:22:17 +02:00
1 parent 84986b3729
commit ba49339fe3
1 file changed
+18
+18
View File
@@ -90,6 +90,24 @@ return {
},
"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,
},
},
},