Last active
August 12, 2026 07:35
-
-
Save Rankarusu/ac4d61ececa933f5c3a970a2488d8f56 to your computer and use it in GitHub Desktop.
Vimium binds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Trying to mimic lazyvim behavior with vimium | |
| # use H and L for tabs | |
| unmap J | |
| unmap K | |
| map H previousTab | |
| map L nextTab | |
| # use same binds as in vim for page up and down | |
| unmap d | |
| unmap u | |
| map <c-d> scrollPageDown | |
| map <c-u> scrollPageUp | |
| # undo/redo maps better to history movement | |
| map u goBack | |
| map <c-r> goForward |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment