Skip to content

Instantly share code, notes, and snippets.

@zioproto
Last active September 2, 2022 07:13
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 zioproto/9d51365b7019760695f7fbe887ef9ef6 to your computer and use it in GitHub Desktop.
Save zioproto/9d51365b7019760695f7fbe887ef9ef6 to your computer and use it in GitHub Desktop.
input rc for iTerm2 arrow navigation on Mac. Remember to disable mission control shortcuts
# If using bash add to ~/.inputrc
"\e[1;5D": backward-word
"\e[1;5C": forward-word
# If using zsh add to ~/.zprofile
bindkey -e
bindkey '^[[1;5C' forward-word
bindkey '^[[1;5D' backward-word
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment