Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
- fi
- # enable programmable completion features (you don't need to enable
- # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
- # sources /etc/bash.bashrc).
- if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
- fi
- [ -r /home/student/.byobu/prompt ] && . /home/student/.byobu/prompt #byobu-prompt#
- #Java stuff
- export JAVA_HOME=/opt/jdk1.8.0_45
- export PATH=$JAVA_HOME/bin:$PATH
- # Eclipse IDE
- #ECLIPSEDIR="/opt/eclipse"
- ECLIPSEDIR="/home/student/eclipse/cpp-neon/eclipse"
- export PATH=$ECLIPSEDIR:$PATH
- # use a locale setting which supports utf-8
- export LC_ALL=en_US.UTF-8
- export LANG=en_US.UTF-8
- export LANGUAGE=en_US.UTF-8
- eval $(thefuck --alias)
- # yocto.sh
- if [ -f ~/nonvol-scripts/yocto.sh ]; then
- source ~/nonvol-scripts/yocto.sh
- fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement