Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

zshrc 511B

123456789101112131415161718192021
  1. #locale
  2. export LC_ALL="en_US.UTF-8"
  3. # neat aliases
  4. alias ls="ls --color=always"
  5. alias ll="ls -l"
  6. alias la="ls -a"
  7. source .zshalias
  8. # completion
  9. zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
  10. zstyle ':completion:*' menu select
  11. autoload -U compinit
  12. compinit
  13. # prompt
  14. autoload -U colors && colors
  15. PROMPT_HOST="%{${fg_bold[yellow]}%}%m "
  16. PROMPT_CWD="%{${fg_bold[cyan]}%}%~ "
  17. PROMPT_ARROW="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
  18. PS1="$PROMPT_HOST$PROMPT_CWD$PROMPT_ARROW%{$reset_color%}"