diff options
Diffstat (limited to '.config/nvim/lua/keybinds.lua')
-rw-r--r-- | .config/nvim/lua/keybinds.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/lua/keybinds.lua b/.config/nvim/lua/keybinds.lua index 49ea2e3..c82587d 100644 --- a/.config/nvim/lua/keybinds.lua +++ b/.config/nvim/lua/keybinds.lua @@ -23,3 +23,5 @@ vim.keymap.set("n", "<Leader>[", require("ufo").openAllFolds) vim.keymap.set("n", "<Leader>]", require("ufo").closeAllFolds) vim.keymap.set("n", "<Leader>r", require("renamer").rename) +vim.opt.whichwrap = "<,>,h,l,[,]" + |