Skip to content

Instantly share code, notes, and snippets.

@uhnomoli
Created May 11, 2017 15:24
Show Gist options
  • Select an option

  • Save uhnomoli/56dd4dd6fa8cf2aa162f064d15be4d83 to your computer and use it in GitHub Desktop.

Select an option

Save uhnomoli/56dd4dd6fa8cf2aa162f064d15be4d83 to your computer and use it in GitHub Desktop.
# completion colors
eval `dircolors`
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
# history search
autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
zle -N up-line-or-beginning-search
zle -N down-line-or-beginning-search
bindkey "\e[A" up-line-or-beginning-search
bindkey "\e[B" down-line-or-beginning-search
# prompt
PS1="%n@%m (%2~)%#"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment