Update dotfiles/.zshrc
This commit is contained in:
parent
cfd8b41f04
commit
eabaa74064
1 changed files with 40 additions and 64 deletions
104
dotfiles/.zshrc
104
dotfiles/.zshrc
|
@ -247,6 +247,9 @@ esac
|
||||||
# eval "$(gdircolors -b "$HOME/.config/dircolors")"
|
# eval "$(gdircolors -b "$HOME/.config/dircolors")"
|
||||||
#fi
|
#fi
|
||||||
|
|
||||||
|
### Backup aliases (so oh-my-zsh does not apply any aliases)
|
||||||
|
save_aliases=$(alias -L)
|
||||||
|
|
||||||
### Antigen
|
### Antigen
|
||||||
if [ -f "$HOME/.local/antigen.zsh" ]; then
|
if [ -f "$HOME/.local/antigen.zsh" ]; then
|
||||||
source "$HOME/.local/antigen.zsh"
|
source "$HOME/.local/antigen.zsh"
|
||||||
|
@ -254,70 +257,39 @@ fi
|
||||||
if command -v antigen > /dev/null; then
|
if command -v antigen > /dev/null; then
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
antigen bundle adb
|
antigen bundle adb
|
||||||
#antigen bundle ansible
|
antigen bundle colored-man-pages
|
||||||
#antigen bundle asdf
|
antigen bundle command-not-found
|
||||||
#antigen bundle aws
|
antigen bundle copyfile
|
||||||
#antigen bundle bundler
|
antigen bundle copybuffer
|
||||||
#antigen bundle colored-man-pages
|
antigen bundle deno
|
||||||
#antigen bundle codeclimate
|
antigen bundle docker
|
||||||
#antigen bundle colorize
|
antigen bundle docker-compose
|
||||||
#antigen bundle command-not-found
|
antigen bundle encode64
|
||||||
#antigen bundle copyfile
|
antigen bundle fd
|
||||||
#antigen bundle copybuffer
|
# antigen bundle gcloud
|
||||||
#antigen bundle deno
|
antigen bundle gh
|
||||||
#antigen bundle docker
|
antigen bundle git
|
||||||
#antigen bundle docker-compose
|
antigen bundle git-auto-fetch
|
||||||
#antigen bundle dotenv
|
antigen bundle gnu-utils
|
||||||
#antigen bundle encode64
|
antigen bundle golang
|
||||||
#antigen bundle fd
|
antigen bundle helm
|
||||||
#antigen bundle fig
|
antigen bundle kubectl
|
||||||
#antigen bundle fzf
|
antigen bundle macos
|
||||||
#antigen bundle gcloud
|
antigen bundle magic-enter
|
||||||
#antigen bundle gh
|
antigen bundle npm
|
||||||
#antigen bundle git
|
antigen bundle pip
|
||||||
#antigen bundle git-auto-fetch
|
antigen bundle ripgrep
|
||||||
#antigen bundle gnu-utils
|
antigen bundle safe-paste
|
||||||
#antigen bundle golang
|
# antigen bundle shell-proxy
|
||||||
#antigen bundle gpg-agent
|
# antigen bundle ssh-agent
|
||||||
#antigen bundle gradle
|
antigen bundle sudo
|
||||||
#antigen bundle helm
|
# antigen bundle terraform
|
||||||
#antigen bundle heroku
|
# antigen bundle tmux
|
||||||
#antigen bundle httpie
|
# antigen bundle ufw
|
||||||
#antigen bundle ionic
|
antigen bundle vagrant
|
||||||
#antigen bundle keychain
|
### antigen bundle volta
|
||||||
#antigen bundle kubectl
|
# antigen bundle wp-cli
|
||||||
#antigen bundle macos
|
antigen bundle zsh-users/zsh-completions src
|
||||||
#antigen bundle macports
|
|
||||||
#antigen bundle magic-enter
|
|
||||||
#antigen bundle microk8s
|
|
||||||
#antigen bundle minikube
|
|
||||||
#antigen bundle multipass
|
|
||||||
#antigen bundle npm
|
|
||||||
#antigen bundle pass
|
|
||||||
#antigen bundle pip
|
|
||||||
#antigen bundle pm2
|
|
||||||
#antigen bundle poetry
|
|
||||||
#antigen bundle rake
|
|
||||||
#antigen bundle repo
|
|
||||||
#antigen bundle ripgrep
|
|
||||||
#antigen bundle ruby
|
|
||||||
#antigen bundle salt
|
|
||||||
#antigen bundle safe-paste
|
|
||||||
#antigen bundle shell-proxy
|
|
||||||
#antigen bundle ssh-agent
|
|
||||||
#antigen bundle sudo
|
|
||||||
#antigen bundle terraform
|
|
||||||
#antigen bundle tmux
|
|
||||||
#antigen bundle transfer
|
|
||||||
#antigen bundle ubuntu
|
|
||||||
#antigen bundle ufw
|
|
||||||
#antigen bundle vagrant
|
|
||||||
#antigen bundle volta
|
|
||||||
#antigen bundle wp-cli
|
|
||||||
#antigen bundle yarn
|
|
||||||
#antigen bundle k
|
|
||||||
#antigen bundle mroth/evalcache
|
|
||||||
#antigen bundle ProfessorManhattan/zsh-completions src
|
|
||||||
antigen bundle zsh-users/zsh-autosuggestions
|
antigen bundle zsh-users/zsh-autosuggestions
|
||||||
antigen bundle zsh-users/zsh-syntax-highlighting
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
antigen bundle marlonrichert/zsh-autocomplete@main
|
antigen bundle marlonrichert/zsh-autocomplete@main
|
||||||
|
@ -325,6 +297,10 @@ if command -v antigen > /dev/null; then
|
||||||
antigen apply
|
antigen apply
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
### Clear oh-my-zsh aliases
|
||||||
|
eval $save_aliases
|
||||||
|
unset save_aliases
|
||||||
|
|
||||||
### ZSH Autocomplete
|
### ZSH Autocomplete
|
||||||
zstyle ':autocomplete:*' list-lines 14
|
zstyle ':autocomplete:*' list-lines 14
|
||||||
zstyle ':autocomplete:history-search:*' list-lines 14
|
zstyle ':autocomplete:history-search:*' list-lines 14
|
||||||
|
|
Loading…
Reference in a new issue