Fix changes to zshrc
This commit is contained in:
parent
5f0eda8bae
commit
53f8ad5c2c
12
zshrc
12
zshrc
|
@ -84,8 +84,7 @@ plugins=(
|
|||
( which oc &>/dev/null ) && plugins+=( oc )
|
||||
( which rsync &>/dev/null ) && plugins+=( rsync )
|
||||
( which aws &>/dev/null ) && plugins+=( aws )
|
||||
( which rust &>/dev/null ) && plugins+=( rust )
|
||||
( which cargo &>/dev/null ) && plugins+=( cargo )
|
||||
( which cargo &>/dev/null ) && plugins+=( rust )
|
||||
( which jq &>/dev/null ) && plugins+=( jsontools )
|
||||
( which encode64 &>/dev/null ) && plugins+=( encode64 )
|
||||
( which docker-compose &>/dev/null ) && plugins+=( docker-compose )
|
||||
|
@ -100,10 +99,15 @@ plugins=(
|
|||
( which code &>/dev/null ) && plugins+=( vscode )
|
||||
( which strfile &>/dev/null ) && plugins+=( chucknorris )
|
||||
( which kubectl &>/dev/null ) && plugins+=( kubectl )
|
||||
( which kubectx &>/dev/null ) && plugins+=( kubectx )
|
||||
( which chroma &>/dev/null ) && plugins+=( colorize )
|
||||
( which kate &>/dev/null ) && plugins+=( kate )
|
||||
( [[ -e /etc/arch-release ]] ) && plugins+=( archlinux )
|
||||
( [[ -e /etc/ubuntu-release ]] ) && plugins+=( ubuntu )
|
||||
( [[ -e /etc/debian-release ]] ) && plugins+=( debian )
|
||||
( [[ -e /etc/suse-release ]] ) && plugins+=( suse )
|
||||
( [[ "$(uname)" == "Darwin" ]] ) && plugins+=( osx )
|
||||
#( which vim &>/dev/null ) && plugins+=( vim-interaction )
|
||||
( [[ "$(uname)" == "Darwin" ]] ) && plugins+=( macos )
|
||||
( which vim &>/dev/null ) && plugins+=( vim-interaction )
|
||||
( which ssh &>/dev/null ) && [[ -d ~/.ssh ]] && plugins+=( ssh-agent )
|
||||
plugins+=(
|
||||
zsh-completions
|
||||
|
|
Loading…
Reference in New Issue