dotfiles/.zprofile

44 lines
866 B
Plaintext
Raw Normal View History

2016-11-13 16:16:45 +00:00
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
2017-07-30 15:52:58 +01:00
vacuum-repo() {
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -d
}
2017-09-04 15:56:59 +01:00
vacuum-repo-hard() {
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D
}
2019-01-20 13:39:04 +00:00
export PATH="$HOME/.cargo/bin:$PATH"