feat(edgy): added LazyVim resize keymaps to edgy
This commit is contained in:
1 file changed
+18
@@ -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,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in new issue
Block a user