init.zsh 387 B

12345678910111213141516171819
  1. #
  2. # Loads prompt themes.
  3. #
  4. # Authors:
  5. # Sorin Ionescu <sorin.ionescu@gmail.com>
  6. #
  7. # Load and execute the prompt theming system.
  8. autoload -Uz promptinit && promptinit
  9. # Load the prompt theme.
  10. zstyle -a ':prezto:module:prompt' theme 'prompt_argv'
  11. if [[ $TERM == (dumb|linux|*bsd*) ]] || (( $#prompt_argv < 1 )); then
  12. prompt 'off'
  13. else
  14. prompt "$prompt_argv[@]"
  15. fi
  16. unset prompt_argv