-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.profile
37 lines (29 loc) · 857 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
37
#!/bin/bash
. ${HOME}/.privateVars
pushd "$( dirname "${BASH_SOURCE[0]}" )" && pwd
if test "${PS1+set}";
then
if [ "${SCRIPTS_UPDATE}" == "true" ]
then
git fetch --all
git checkout origin/master
git submodule init
git submodule update
fi
fi
if test "${TERM+set}";
then
. ./.commonvars
. ./.dockerStuff
. ./.profile.sh
export CDPATH=".:~:${CODE_HOME}/:${CDPATH}"
export CDPATH=":${CDPATH}:${GOPATH}/src/github.com/"
export CDPATH=":${CDPATH}:${GOPATH}/src/github.com/jjeffrey-bolste/"
export CDPATH=":${CDPATH}:${GOPATH}/src/github.com/hibooboo2/"
export CDPATH=":${CDPATH}:${GOPATH}/src/gogs.jhrb.us/wizardofmath/"
export CDPATH=":${CDPATH}:${HOME}/projects"
clear
fi
popd
source "$( dirname "${BASH_SOURCE[0]}" )/timing_and_autofocus_vscode.sh"
source "$( dirname "${BASH_SOURCE[0]}" )/history_per_dir.sh"