Created
December 7, 2021 19:56
-
-
Save erikw/7d855ef93097bbf6150b60366648c2c6 to your computer and use it in GitHub Desktop.
NPCPP Vim keybindings
This file contains 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
#~/.config/ncmpcpp/bindings | |
# How to configure NCMPCPP to get Vim-like keybindings | |
def_key "j" | |
scroll_down | |
def_key "k" | |
scroll_up | |
def_key "h" | |
previous_column | |
def_key "l" | |
next_column | |
def_key "ctrl-b" | |
page_up | |
def_key "ctrl-u" | |
page_up | |
def_key "ctrl-f" | |
page_down | |
def_key "ctrl-d" | |
page_down | |
def_key "g" | |
move_home | |
def_key "G" | |
move_end | |
def_key "n" | |
next_found_item | |
def_key "N" | |
previous_found_item |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment