bashrc 659 B

123456789101112131415161718192021222324252627282930
  1. export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$HOME/.local/bin
  2. export PAGER=less
  3. # Colored prompt - finally!
  4. NORMAL="\[\e[0m\]"
  5. GREEN="\[\e[1;32m\]"
  6. RED="\[\e[1;31m\]"
  7. YELLOW="\[\e[1;33m\]"
  8. export PS1="$GREEN\u@dockerhost [$YELLOW\w$GREEN]\$ $NORMAL"
  9. #export PS1='\h:\w\$ '
  10. umask 022
  11. for script in /etc/profile.d/*.sh ; do
  12. if [ -r $script ] ; then
  13. . $script
  14. fi
  15. done
  16. # Pwease good char support in console too...
  17. export LANG="en_US.UTF-8"
  18. export LC_ALL="en_US.UTF-8"
  19. # plz no shitty busybox vi
  20. export EDITOR="vim"
  21. # Aliases:
  22. alias ls='ls --color=auto'
  23. alias ll='ls -lhA'
  24. alias grep='grep --color'