.bashrc 675 B

1234567891011121314151617181920212223242526272829303132
  1. # .bashrc
  2. # Source global definitions
  3. #if [ -f /etc/bashrc ]; then
  4. # . /etc/bashrc
  5. #fi
  6. # User specific environment
  7. #if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
  8. #then
  9. # PATH="$HOME/.local/bin:$HOME/bin:$PATH"
  10. #fi
  11. #export PATH
  12. # Base16 Shell
  13. COLOR="/root/.config/base16-shell/scripts/base16-mellow-purple.sh"
  14. $COLOR
  15. PATH="$PATH:/usr/local/go/bin"
  16. BASE16_SHELL="$HOME/.config/base16-shell/"
  17. [ -n "$PS1" ] && \
  18. [ -s "$BASE16_SHELL/profile_helper.sh" ] && \
  19. eval "$("$BASE16_SHELL/profile_helper.sh")"
  20. PS1='\[\033[1;90m\]{\[\033[4;96m\]\u\[\033[00m\]@\[\033[4;96m\]\W\[\033[1;90m\]}\[\033[91m\]#\[\033[00m\] '
  21. alias vi="vim"
  22. #alias ls="ls -F --color=yes"