-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile
36 lines (28 loc) · 905 Bytes
/
profile
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
32
33
34
35
36
# .profile
if [ -n "$BASH" ] && [ -r ~/.bashrc ]; then
. ~/.bashrc
fi
if [ -d /usr/lib/kbd/consolefonts/ ]; then
case $(tty) in /dev/tty[0-9]*)
setfont /usr/lib/kbd/consolefonts/ter-powerline-v16n.psf.gz
tty-theme 4
;;
esac
fi
#if [ -d "$HOME/adb-fastboot/platform-tools" ] ; then
# export PATH="$HOME/adb-fastboot/platform-tools:$PATH"
#fi
export GOPATH="$HOME/go"
export PATH="$PATH:$HOME/.local/bin:$HOME/bin:$GOPATH/bin:$HOME/.cargo/bin/:$HOME/.rvm/bin"
export TF_LOG="TRACE"
export TF_LOG_PATH="$HOME/.tflogs"
if $(command vivid 2>/dev/null) ; then
export LS_COLORS=$(vivid generate molokai)
fi
if [ -d /home/linuxbrew/.linuxbrew ] ; then
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
fi
# Workaround for KeePass built-in ssh-agent
#export SSH_AUTH_SOCK=/tmp/ssh-agent-lib-sock
export _JAVA_AWT_WM_NONREPARENTING=1
export CHAMBER_AWS_REGION=us-west-2