-
The default Neovim behaviour of S-h and S-l is to move the cursor to the top of the screen and the bottom of the screen respectively. This is overridden in the lazyvim keymaps to move to the previous and next buffers. I would like to keep the original behaviour. Other than commenting the out the lines in the keymaps.lua file, which is located several folders deep in the .local folder, is there another better way to do this? |
Beta Was this translation helpful? Give feedback.
Answered by
folke
May 25, 2023
Replies: 1 comment 1 reply
-
In your vim.keymap.del("n", "<S-l>")
vim.keymap.del("n", "<S-h>") And yes, never ever make changes to plugins in your .local. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jrschenk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In your
lua/config/keymaps.lua
, add:And yes, never ever make changes to plugins in your .local.