-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bash_user
31 lines (23 loc) · 825 Bytes
/
.bash_user
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
# Sexiest prompt
PS1="\W$ "
# Avoids writing duplicated commands to history
export HISTCONTROL=erasedups
# Appends modified commands to history instead of overwriting them
shopt -s histappend
# Disables 'feature' activated with Ctrl-S which disables terminal output
# https://unix.stackexchange.com/questions/72086/ctrl-s-hang-terminal-emulator
stty -ixon
# Cuda
#export PATH=$PATH:/usr/local/cuda/bin
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib:/usr/local/lib
#export CPLUS_INCLUDE_PATH=/usr/local/cuda/include
# Java
#export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-i386
#export PATH="$PATH:$JAVA_HOME/bin"
# Grails
#export GRAILS_HOME=$HOME/.sdkman/candidates/grails/2.4.4
#export PATH=$PATH:$GRAILS_HOME/bin
# IntelliJ
#export IDEA_HOME=$HOME/apps/idea
#export PATH=$PATH:$IDEA_HOME/bin