Skip to content

Instantly share code, notes, and snippets.

@erikw
Created December 7, 2021 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikw/7d855ef93097bbf6150b60366648c2c6 to your computer and use it in GitHub Desktop.
Save erikw/7d855ef93097bbf6150b60366648c2c6 to your computer and use it in GitHub Desktop.
NPCPP Vim keybindings
#~/.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