forked from nicholasjhenry/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshrc.local
31 lines (22 loc) · 975 Bytes
/
shrc.local
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export PATH="$HOME/Development/dotfiles.local/bin:$PATH"
# Load custom completions
# Reload on-my-zsh to deal with compinit issues
# source: https://github.com/zsh-users/zsh-completions/issues/277#issuecomment-72253611
fpath=($HOME/.zsh-completions $fpath)
# homebrew shell completions
if type brew &>/dev/null; then
FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH
fi
source $ZSH/oh-my-zsh.sh
source $HOME/Development/dotfiles.local/zsh/aliases
source $HOME/Development/dotfiles.local/zsh/flaker
[ -z "$EDITOR" ] && export EDITOR=vim
# https://github.com/junegunn/fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
source $HOME/Development/dotfiles.local/zsh/fzf
# KubeCtl shee autocompletion
# https://kubernetes.io/docs/tasks/tools/install-kubectl/#enabling-shell-autocompletion
source <(kubectl completion zsh)
alias dea='docker-compose exec application'
alias deat='docker-compose exec -e MIX_ENV=test application'
source $HOME/Development/dotfiles.secret/shrc