Skip to content

Commit

Permalink
feat(edgy): added LazyVim resize keymaps to edgy
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 12, 2023
1 parent 84986b3 commit ba49339
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lua/lazyvim/plugins/extras/ui/edgy.lua
Expand Up @@ -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,
},
},
},

Expand Down

0 comments on commit ba49339

Please sign in to comment.