dotfiles/.zprofile
2019-01-20 13:39:04 +00:00

44 lines
866 B
Bash

if [[ "$OSTYPE" == darwin* ]]; then
export BROWSER='open'
fi
export EDITOR='vim'
export VISUAL='vim'
export PAGER='less'
if [[ -z "$LANG" ]]; then
export LANG='en_GB.UTF-8'
fi
typeset -gU cdpath fpath mailpath path
# Set the list of directories that Zsh searches for programs.
path=(
/usr/local/{bin,sbin}
$path
)
export LESS='-F -g -i -M -R -S -w -X -z-4'
if (( $#commands[(i)lesspipe(|.sh)] )); then
export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-"
fi
if [[ ! -d "$TMPDIR" ]]; then
export TMPDIR="/tmp/$LOGNAME"
mkdir -p -m 700 "$TMPDIR"
fi
TMPPREFIX="${TMPDIR%/}/zsh"
source ~/.setenv
vacuum-repo() {
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -d
}
vacuum-repo-hard() {
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D
}
export PATH="$HOME/.cargo/bin:$PATH"