Advertisement
RobertBerger

Untitled

Oct 22nd, 2017
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. if [ -f ~/.bash_aliases ]; then
  2. . ~/.bash_aliases
  3. fi
  4.  
  5. # enable programmable completion features (you don't need to enable
  6. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  7. # sources /etc/bash.bashrc).
  8. if ! shopt -oq posix; then
  9. if [ -f /usr/share/bash-completion/bash_completion ]; then
  10. . /usr/share/bash-completion/bash_completion
  11. elif [ -f /etc/bash_completion ]; then
  12. . /etc/bash_completion
  13. fi
  14. fi
  15. [ -r /home/student/.byobu/prompt ] && . /home/student/.byobu/prompt #byobu-prompt#
  16.  
  17.  
  18. #Java stuff
  19. export JAVA_HOME=/opt/jdk1.8.0_45
  20. export PATH=$JAVA_HOME/bin:$PATH
  21. # Eclipse IDE
  22. #ECLIPSEDIR="/opt/eclipse"
  23. ECLIPSEDIR="/home/student/eclipse/cpp-neon/eclipse"
  24. export PATH=$ECLIPSEDIR:$PATH
  25. # use a locale setting which supports utf-8
  26. export LC_ALL=en_US.UTF-8
  27. export LANG=en_US.UTF-8
  28. export LANGUAGE=en_US.UTF-8
  29.  
  30. eval $(thefuck --alias)
  31.  
  32. # yocto.sh
  33. if [ -f ~/nonvol-scripts/yocto.sh ]; then
  34. source ~/nonvol-scripts/yocto.sh
  35. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement