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

1234567891011121314151617181920212223242526
  1. #locale
  2. export LC_ALL="en_US.UTF-8"
  3. # neat aliases
  4. if [ $(uname) = "Linux" ]; then
  5. alias ls="ls --color=always"
  6. else
  7. alias ls="ls -G"
  8. fi
  9. alias ll="ls -l"
  10. alias la="ls -a"
  11. source ~/.zshalias
  12. export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/bin:lusr/games:/usr/local/games:$HOME/bin"
  13. # completion
  14. zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
  15. zstyle ':completion:*' menu select
  16. autoload -U compinit
  17. compinit
  18. # prompt
  19. autoload -U colors && colors
  20. PROMPT_HOST="%{${fg_bold[yellow]}%}%m "
  21. PROMPT_CWD="%{${fg_bold[cyan]}%}%~ "
  22. PROMPT_ARROW="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
  23. PS1="$PROMPT_HOST$PROMPT_CWD$PROMPT_ARROW%{$reset_color%}"