Advertisement
Guest User

Untitled

a guest
Jan 11th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. #
  2. # ~/.bashrc
  3. #
  4.  
  5. # If not running interactively, don't do anything
  6. [[ $- != *i* ]] && return
  7.  
  8. alias ls='ls --color=auto'
  9. alias la="/bin/ls -lAh --color"
  10. alias lt='/bin/ls -ltrh --color'
  11. alias p='sudo pacman'
  12. alias y='yaourt'
  13. alias sued='sudo mcedit'
  14. PS1='[\u@\h \W]\$ '
  15. case ${TERM} in
  16. screen)
  17. PS1="\[\e[0;32m\]\u\[\e[m\]\[\[\e[1;34m\]\w"'\[\033k\033\\\]\[\e[m\]\[\e[m\]\[\e[1;32m\]\$ \[\e[m\]\[\e[1;37m\] '
  18. ;;
  19. esac
  20.  
  21. export EDITOR=mcedit
  22. export JAVA_HOME=/opt/jdk1.7.0_45
  23. export ANT_HOME=/opt/apache-ant-1.9.2
  24. export M2_HOME=/opt/apache-maven-2.2.1
  25. #export M2_HOME=/opt/apache-maven-3.1.1
  26. export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"
  27. export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true"
  28. export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:/home/ivanov/.local/bin:$M2_HOME/bin:$PATH
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement