blob: 3843e856111bbc41fb2ef39b5c578a679d51054c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
export EDITOR="emacsclient -a ''"
export HISTFILE=
export LANG="en_US.UTF-8"
export LC_ALL="$LANG"
export LC_CTYPE="$LANG"
export PAGER="less"
export TZ=America/Los_Angeles
export GOPATH="${HOME}/gocode"
# build the PATH
path=(
"$HOME/bin"
"$HOME/gocode/bin"
"$HOME/src/source/dist"
"/opt/twitter/bin"
"/opt/twitter/opt/go/libexec/bin"
"/Applications/Racket v6.3/bin/"
$path
)
|