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 620B

12345678910111213141516171819202122
  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. export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/bin:lusr/games:/usr/local/games:$HOME/bin"
  9. # completion
  10. zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
  11. zstyle ':completion:*' menu select
  12. autoload -U compinit
  13. compinit
  14. # prompt
  15. autoload -U colors && colors
  16. PROMPT_HOST="%{${fg_bold[yellow]}%}%m "
  17. PROMPT_CWD="%{${fg_bold[cyan]}%}%~ "
  18. PROMPT_ARROW="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
  19. PS1="$PROMPT_HOST$PROMPT_CWD$PROMPT_ARROW%{$reset_color%}"