Skip to content

Instantly share code, notes, and snippets.

@rkitover
Last active September 9, 2024 13:29
Show Gist options
  • Save rkitover/59b5ceb94e4878e6864365ebed4a291e to your computer and use it in GitHub Desktop.
Save rkitover/59b5ceb94e4878e6864365ebed4a291e to your computer and use it in GitHub Desktop.
zsh-autosuggestions config
source ~/source/repos/zsh-autosuggestions/zsh-autosuggestions.zsh
autoload -U up-line-or-beginning-search
autoload -U down-line-or-beginning-search
zle -N up-line-or-beginning-search
zle -N down-line-or-beginning-search
bindkey "^[[A" up-line-or-beginning-search # Up
bindkey "^[[B" down-line-or-beginning-search # Down
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment