blob: a479c35c034988cf806462f9ef3d80b78c760650 (
plain)
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=vim
export LANG=en_US.UTF-8
# macports
#export PATH=/opt/local/bin:/opt/local/sbin:$PATH
#export MANPATH=/opt/local/share/man:$MANPATH
#export DISPLAY=:0
#export PATH="/opt/local/libexec/gnubin:$PATH"
#fpath=(/opt/local/share/zsh/site-functions $fpath)
# asdf and completions
#. $HOME/.asdf/asdf.sh
#fpath=(${ASDF_DIR}/completions $fpath)
# Java
#export JAVA_HOME="$(/usr/libexec/java_home -v 1.8)"
# local bin
#export PATH=~/.local/bin:$PATH
# start the ssh agent on login and stop on logout
#eval `ssh-agent -s`
#trap 'eval `ssh-agent -k`' 0
# prompt hostname is highlighted in red for non-local envs
#export ZSH_LOCAL_ENV=true
|