aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2022-09-10 10:40:08 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2022-09-10 10:40:08 +0000
commitc1fe9176c0c9609c7d76d1c014e48f58dcb65b38 (patch)
treed0faca41a2abf8e43e2a542e1428eacf6c31a581 /.config
parentb57d4cb883e8f016cfbc89c87e6594f0c2aef1ff (diff)
downloaddotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.tar
dotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.tar.gz
dotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.tar.bz2
dotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.tar.lz
dotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.tar.xz
dotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.tar.zst
dotfiles-c1fe9176c0c9609c7d76d1c014e48f58dcb65b38.zip
Neovim wrap cursor at the end of line
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/keybinds.lua2
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,[,]"
+