prompt.zsh 439 B

1234567891011121314151617181920212223242526272829303132
  1. export PAGER=less
  2. export LC_CTYPE=en_US.UTF-8
  3. bindkey -e
  4. # Directory stuff.
  5. setopt AUTO_NAME_DIRS
  6. # Speed stuff.
  7. #setopt NO_BEEP
  8. setopt AUTO_CD
  9. setopt MULTIOS
  10. setopt CDABLEVARS
  11. bindkey -e
  12. if [[ x$WINDOW != x ]]
  13. then
  14. SCREEN_NO="%B$WINDOW%b "
  15. else
  16. SCREEN_NO=""
  17. fi
  18. PS1="%n@%m:%~%# "
  19. # Setup the prompt with pretty colors
  20. setopt prompt_subst
  21. export LSCOLORS="Gxfxcxdxbxegedabagacad"
  22. source "$ZSH/themes/$ZSH_THEME.zsh-theme"