blob: 0d7c3aa3c4bb088b9249c30b56ab8f8db0194b72 (
plain) (
blame)
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
|
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"
# FIXME enable auto completion - This is stupid, this should be in .zshrc
autoload -U compinit
compinit -C
# this is for local stuff
[ -f ~/.zshenv_local ] && source ~/.zshenv_local
# 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
)
|