zshrc 705 B

12345678910111213141516171819202122232425262728
  1. # Lines configured by zsh-newuser-install
  2. HISTFILE=~/.histfile
  3. HISTSIZE=1000
  4. SAVEHIST=1000
  5. bindkey -e
  6. # End of lines configured by zsh-newuser-install
  7. # The following lines were added by compinstall
  8. zstyle :compinstall filename '/home/aeth/.zshrc'
  9. autoload -Uz compinit
  10. compinit
  11. # End of lines added by compinstall
  12. autoload -Uz vcs_info
  13. precmd_vcs_info() { vcs_info }
  14. precmd_functions+=( precmd_vcs_info )
  15. setopt prompt_subst
  16. RPROMPT='${vcs_info_msg_0_}'
  17. # PROMPT='${vcs_info_msg_0_}%# '
  18. zstyle ':vcs_info:git:*' formats '%b'
  19. setopt PROMPT_SUBST
  20. PROMPT='%F{green}%*%f %B%F{blue}%n@%M: %B%F{#FFB6C1}%~%f %F{red}${vcs_info_msg_0_}%f$ '
  21. export _JAVA_AWT_WM_NONREPARENTING=1
  22. path+=('/home/aeth/go/bin')