Created
May 11, 2017 15:24
-
-
Save uhnomoli/56dd4dd6fa8cf2aa162f064d15be4d83 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # 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