mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
52 lines
938 B
Plaintext
52 lines
938 B
Plaintext
|
# `.zshenv' is sourced on all invocations of the shell, unless the -f option is set.
|
||
|
# It should contain commands to set the command search path, plus other important environment variables.
|
||
|
# `.zshenv' should not contain commands that produce output or assume the shell is attached to a tty.
|
||
|
#
|
||
|
# Browser
|
||
|
#
|
||
|
|
||
|
if [[ "$OSTYPE" == darwin* ]]; then
|
||
|
export BROWSER='open'
|
||
|
fi
|
||
|
|
||
|
#
|
||
|
# Editors
|
||
|
#
|
||
|
|
||
|
export EDITOR='vim'
|
||
|
export VISUAL="myemacs -c"
|
||
|
export ALTERNATE_EDITOR=""
|
||
|
export PAGER='less'
|
||
|
|
||
|
#
|
||
|
# Language
|
||
|
#
|
||
|
|
||
|
if [[ -z "$LANG" ]]; then
|
||
|
export LANG='en_US.UTF-8'
|
||
|
fi
|
||
|
|
||
|
#
|
||
|
# Paths
|
||
|
#
|
||
|
|
||
|
# Ensure path arrays do not contain duplicates.
|
||
|
typeset -gU cdpath fpath mailpath path
|
||
|
|
||
|
# Set the the list of directories that cd searches.
|
||
|
# cdpath=(
|
||
|
# $cdpath
|
||
|
# )
|
||
|
|
||
|
# Set the list of directories that Zsh searches for programs.
|
||
|
path=(
|
||
|
/usr/local/{bin,sbin}
|
||
|
~/.bin
|
||
|
~/.local/{bin,sbin}
|
||
|
$path
|
||
|
)
|
||
|
|
||
|
export PATH
|
||
|
export GOPATH=$HOME/go
|
||
|
export PATH=$PATH:$GOPATH/bin/
|