2015-09-18 00:14:17 +00:00
|
|
|
#
|
|
|
|
# Executes commands at login pre-zshrc.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Less
|
|
|
|
#
|
|
|
|
|
|
|
|
# Set the default Less options.
|
|
|
|
# Mouse-wheel scrolling has been disabled by -X (disable screen clearing).
|
|
|
|
# Remove -X and -F (exit if the content fits on one screen) to enable it.
|
|
|
|
export LESS='-F -g -i -M -R -S -w -X -z-4'
|
|
|
|
|
|
|
|
# Set the Less input preprocessor.
|
|
|
|
# Try both `lesspipe` and `lesspipe.sh` as either might exist on a system.
|
|
|
|
if (( $#commands[(i)lesspipe(|.sh)] )); then
|
|
|
|
export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# Temporary Files
|
|
|
|
#
|
|
|
|
|
|
|
|
if [[ ! -d "$TMPDIR" ]]; then
|
|
|
|
export TMPDIR="/tmp/$LOGNAME"
|
|
|
|
mkdir -p -m 700 "$TMPDIR"
|
|
|
|
fi
|
|
|
|
|
2015-12-09 16:07:44 +00:00
|
|
|
# Handy aliases
|
|
|
|
alias fail="less +F"
|
|
|
|
|
2015-09-18 00:14:17 +00:00
|
|
|
# Docker goodies
|
2017-02-13 15:51:53 +00:00
|
|
|
alias da="docker_start_attach"
|
2015-09-18 00:14:17 +00:00
|
|
|
alias drm="docker rm"
|
|
|
|
alias drun="docker run"
|
|
|
|
alias drmi="docker rmi"
|
2016-10-07 22:56:35 +00:00
|
|
|
|
2017-08-01 17:04:25 +00:00
|
|
|
alias kg='kubectl --context="kubernetes-admin@kubernetes"'
|
|
|
|
|
|
|
|
kube(){
|
|
|
|
if [ "$#" -lt 1 ]; then
|
|
|
|
echo "Wrapper for kubectl"
|
|
|
|
echo ""
|
|
|
|
echo "Usage: $0 <namespace> ... kubectl args"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
context=$1
|
|
|
|
shift
|
|
|
|
kubectl --context="$context" "$@"
|
|
|
|
}
|
|
|
|
|
2015-09-18 00:14:17 +00:00
|
|
|
TMPPREFIX="${TMPDIR%/}/zsh"
|
2016-03-09 14:16:31 +00:00
|
|
|
|
2017-12-07 16:11:32 +00:00
|
|
|
if command -v pyenv >/dev/null 2>&1 ; then
|
2016-10-07 22:56:35 +00:00
|
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
|
|
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
|
|
eval "$(pyenv init -)"
|
|
|
|
pyenv virtualenvwrapper
|
|
|
|
fi
|
|
|
|
|
|
|
|
setopt interactivecomments
|