2019-12-06 16:31:10 -05:00
|
|
|
export PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:${PATH}"
|
2020-05-25 13:36:22 -04:00
|
|
|
if [ -d "${HOME}/bin" ]; then
|
|
|
|
export PATH="${HOME}/bin:${PATH}"
|
|
|
|
fi
|
2019-12-06 16:31:10 -05:00
|
|
|
|
|
|
|
# oh-my-zsh {
|
|
|
|
export ZSH="${HOME}/.oh-my-zsh"
|
|
|
|
|
|
|
|
ZSH_THEME="candy"
|
|
|
|
HYPHEN_INSENSITIVE="true"
|
|
|
|
export UPDATE_ZSH_DAYS=7
|
|
|
|
DISABLE_UPDATE_PROMPT="true"
|
|
|
|
HIST_STAMPS="mm/dd/yyyy"
|
2020-05-25 13:36:22 -04:00
|
|
|
plugins=(
|
|
|
|
autojump
|
|
|
|
battery
|
|
|
|
brew
|
|
|
|
catimg
|
|
|
|
common-aliases
|
|
|
|
copydir
|
|
|
|
copyfile
|
|
|
|
docker
|
|
|
|
encode64
|
|
|
|
fzf
|
|
|
|
git
|
|
|
|
git-extras
|
|
|
|
go
|
|
|
|
golang
|
|
|
|
grunt
|
|
|
|
helm
|
|
|
|
kube-ps1
|
|
|
|
kubectl
|
|
|
|
minikube
|
|
|
|
node
|
|
|
|
npm
|
|
|
|
osx
|
|
|
|
pip
|
|
|
|
pod
|
|
|
|
ssh-agent
|
|
|
|
sudo
|
|
|
|
tmux
|
|
|
|
xcode
|
|
|
|
zsh-autosuggestions
|
|
|
|
zsh-syntax-highlighting
|
|
|
|
)
|
|
|
|
|
2019-12-06 16:31:10 -05:00
|
|
|
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# }
|
|
|
|
|
|
|
|
# zsh {
|
|
|
|
HISTFILE="${HOME}/.histfile"
|
|
|
|
HISTSIZE=1048576
|
|
|
|
SAVEHIST=1048576
|
|
|
|
setopt \
|
|
|
|
appendhistory \
|
|
|
|
autocd \
|
|
|
|
beep \
|
|
|
|
extendedglob \
|
|
|
|
nomatch \
|
|
|
|
notify \
|
|
|
|
HIST_IGNORE_DUPS \
|
|
|
|
INC_APPEND_HISTORY \
|
|
|
|
SHARE_HISTORY \
|
|
|
|
HIST_REDUCE_BLANKS
|
|
|
|
# }
|
|
|
|
|
|
|
|
# general {
|
|
|
|
export LANG='en_US.UTF-8'
|
|
|
|
export TERM='xterm-256color'
|
|
|
|
export EDITOR='vim'
|
|
|
|
# if nvim is installed, effectively replace vim
|
|
|
|
if command -v nvim &> /dev/null; then
|
|
|
|
export EDITOR='nvim'
|
|
|
|
alias vi='nvim'
|
|
|
|
alias vim='nvim'
|
|
|
|
alias vimdiff="nvim -d"
|
|
|
|
alias view="nvim -R"
|
|
|
|
fi
|
|
|
|
export VISUAL="${EDITOR}"
|
|
|
|
|
|
|
|
# use reflink cp if supported (yay CoW)
|
2020-05-25 13:36:22 -04:00
|
|
|
if 2>&1 cp --help | grep -q reflink; then
|
2019-12-06 16:31:10 -05:00
|
|
|
alias cp='cp -i --reflink=auto'
|
|
|
|
else
|
|
|
|
alias cp='cp -i'
|
|
|
|
fi
|
|
|
|
alias mv='mv -i'
|
|
|
|
alias dco='docker-compose'
|
|
|
|
alias mk='minikube'
|
|
|
|
alias k='kubectl'
|
|
|
|
alias kctx='kubectx'
|
|
|
|
alias kns='kubens'
|
|
|
|
|
|
|
|
REPOS="${HOME}/repos"
|
|
|
|
|
|
|
|
CARGO_ENV="${HOME}/.cargo/env"
|
|
|
|
if [ -f "${CARGO_ENV}" ]; then
|
|
|
|
source "${CARGO_ENV}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x "${REPOS}/termpdf/termpdf" ]; then
|
|
|
|
alias termpdf="${REPOS}/termpdf/termpdf"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add awless autocompletion if available
|
|
|
|
if command -v awless &> /dev/null; then
|
|
|
|
source <(awless completion zsh)
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add kubectl autocompletion if available
|
|
|
|
if command -v kubectl &> /dev/null; then
|
|
|
|
source <(kubectl completion zsh)
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add helm autocompletion if available
|
|
|
|
if command -v helm &> /dev/null; then
|
|
|
|
source <(helm completion zsh)
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add aws autocompletion if available
|
|
|
|
if command -v aws &> /dev/null; then
|
|
|
|
complete -C aws_completer aws
|
|
|
|
fi
|
|
|
|
|
|
|
|
if command -v fzf &> /dev/null; then
|
|
|
|
export FZF_DEFAULT_COMMAND='ag --skip-vcs-ignores --nocolor -g "" -l'
|
|
|
|
export FZF_CTRL_T_COMMAND="${FZF_DEFAULT_COMMAND}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
NIX_SH="${HOME}/.nix-profile/etc/profile.d/nix.sh"
|
|
|
|
if [ -f "${NIX_SH}" ]; then
|
|
|
|
source "${NIX_SH}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
export GOAPPS=(
|
|
|
|
'github.com/dgraph-io/badger/...'
|
|
|
|
'github.com/golang/protobuf/protoc-gen-go'
|
|
|
|
'github.com/google/huproxy/huproxyclient'
|
|
|
|
'github.com/jedisct1/piknik'
|
|
|
|
'github.com/junegunn/fzf'
|
|
|
|
'github.com/tomnomnom/gron'
|
|
|
|
'github.com/wallix/awless'
|
|
|
|
'google.golang.org/grpc'
|
|
|
|
)
|
2020-05-25 13:36:22 -04:00
|
|
|
export GO111MODULE=on
|
2019-12-06 16:31:10 -05:00
|
|
|
|
2020-05-25 13:36:22 -04:00
|
|
|
case "$(uname)" in
|
2019-12-06 16:31:10 -05:00
|
|
|
"Darwin")
|
|
|
|
pdf_join() {
|
|
|
|
join_py="/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py"
|
|
|
|
echo -n "Name of output file: "
|
|
|
|
read output_file && "$join_py" -o $output_file $@ && open $output_file
|
|
|
|
}
|
|
|
|
|
|
|
|
if command -v gtar &> /dev/null; then
|
|
|
|
alias tar='gtar'
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
"Linux")
|
|
|
|
alias open="xdg-open"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
# }
|
|
|
|
|
|
|
|
# load any file that ends with .zsh or .sh
|
|
|
|
for SCRIPT in "${HOME}/.zshrc.d"/**/(.|?)*(.zsh|.sh); do
|
|
|
|
if ! [ -x "${SCRIPT}" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
source "${SCRIPT}"
|
|
|
|
done
|
|
|
|
|
|
|
|
source "${HOME}/.homesick/repos/homeshick/homeshick.sh"
|
|
|
|
homeshick refresh 5 -q
|