Created
July 31, 2019 10:11
-
-
Save fzerorubigd/94ea68b2e7d4e36c79d3734ef5619cb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ ! -e ~/.antigen/source/antigen.zsh ];then | |
mkdir ~/.antigen | |
git clone https://github.com/zsh-users/antigen.git ~/.antigen/source | |
fi; | |
if [ ! -e "$HOME/.scm_breeze/scm_breeze.sh" ];then | |
git clone git://github.com/scmbreeze/scm_breeze.git ~/.scm_breeze | |
fi; | |
source ~/.antigen/source/antigen.zsh | |
antigen bundle fzerorubigd/zsh-must | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-completions src | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle zsh-users/zsh-history-substring-search | |
antigen theme nojhan/liquidprompt | |
#antigen theme dracula/zsh | |
#antigen bundle wting/autojump bin | |
antigen bundle ytet5uy4/pctl | |
export PCTL_PROXY_ADDRESS=127.0.0.1 PCTL_PROXY_PORT=4000 | |
antigen bundle djui/alias-tips | |
antigen bundle hcgraf/zsh-sudo | |
#antigen bundle sharat87/autoenv | |
antigen bundle jreese/zsh-titles | |
#antigen bundle zsh-users/zaw | |
#antigen bundle willghatch/zsh-zaw-mpd | |
[[ -r "/usr/share/z/z.sh" ]] && source /usr/share/z/z.sh | |
antigen bundle mollifier/anyframe | |
zstyle ":anyframe:selector:" use fzf | |
zstyle ":anyframe:selector:fzf:" command 'fzf --extended' | |
antigen bundle fzerorubigd/zshfunc | |
antigen bundle chrissicool/zsh-256color | |
antigen apply | |
[ -s "${HOME}/.scm_breeze/scm_breeze.sh" ] && source "${HOME}/.scm_breeze/scm_breeze.sh" | |
# This is important to make gpg signing work as expected | |
export GPG_TTY=`tty` | |
echo "UPDATESTARTUPTTY" | gpg-connect-agent > /dev/null 2>&1 | |
alias v=vagrant | |
[ -s "${HOME}/.zsh_bindings" ] && source "${HOME}/.zsh_bindings" | |
source <(kubectl completion zsh) | |
alias kkk='source <(kubectl completion zsh)' | |
eval $(thefuck --alias) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment