diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-03-12 13:28:44 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-03-12 13:28:44 -0800 |
commit | 7b4c01e9470bdf066aaafcfc911b8aa927d1b690 (patch) | |
tree | b748c46695fa75a93c3e0785b122d432d2005451 /zshenv | |
parent | [emacs] Stop using smart-mode-line. (diff) | |
download | emacs.d-7b4c01e9470bdf066aaafcfc911b8aa927d1b690.tar.gz |
[zsh] replace bash with zsh.
Add configuration files, delete bash config files, and update documentation. Closes #22 #19
Diffstat (limited to 'zshenv')
-rw-r--r-- | zshenv | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/zshenv b/zshenv index f387203..0d7c3aa 100644 --- a/zshenv +++ b/zshenv @@ -1,7 +1,26 @@ -source ~/.env +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" -# enable auto completion - This is stupid, this should be in .zshrc +# FIXME enable auto completion - This is stupid, this should be in .zshrc autoload -U compinit compinit -C -source ~/.bash_local +# 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 +) |