Created
June 11, 2020 17:41
-
-
Save fzerorubigd/7cfa941a29d5cea466cd6ad1e278bca9 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 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 apply | |
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 | |
source ~/.zsh_bindings | |
[ -s "/home/f0rud/.scm_breeze/scm_breeze.sh" ] && source "/home/f0rud/.scm_breeze/scm_breeze.sh" | |
fpath+=~/.zfunc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment