Update dotfiles/.zshrc

This commit is contained in:
Brian Zalewski 2022-11-02 17:17:03 +00:00
parent cf8117f47c
commit 2af53683e8

View file

@ -347,7 +347,8 @@ command -v lsd > /dev/null && alias ls='lsd --group-dirs first' && \
### Deno ### Deno
if command -v deno > /dev/null; then if command -v deno > /dev/null; then
_evalcache deno completions zsh # _evalcache deno completions zsh
eval "$(deno completions zsh)"
fi fi
### direnv ### direnv
@ -362,33 +363,34 @@ fi
### gh ### gh
if command -v gh > /dev/null; then if command -v gh > /dev/null; then
_evalcache gh completion -s zsh # _evalcache gh completion -s zsh
fi fi
### Helm ### Helm
if command -v helm > /dev/null; then if command -v helm > /dev/null; then
_evalcache helm completion zsh # _evalcache helm completion zsh
fi fi
### Hyperfine ### Hyperfine
if command -v hyperfine > /dev/null && [ -f /usr/local/src/hyperfine/autocomplete/hyperfine.zsh-completion ]; then if command -v hyperfine > /dev/null && [ -f /usr/local/src/hyperfine/autocomplete/hyperfine.zsh-completion ]; then
source /usr/local/src/hyperfine/autocomplete/hyperfine.zsh-completion # source /usr/local/src/hyperfine/autocomplete/hyperfine.zsh-completion
fi fi
### Java (asdf) ### Java (asdf)
if [ -f "$HOME/.local/asdf/plugins/java/set-java-home.zsh" ]; then if [ -f "$HOME/.local/asdf/plugins/java/set-java-home.zsh" ]; then
. "$HOME/.local/asdf/plugins/java/set-java-home.zsh" # . "$HOME/.local/asdf/plugins/java/set-java-home.zsh"
fi fi
### kubectl ### kubectl
if command -v kubectl > /dev/null; then if command -v kubectl > /dev/null; then
_evalcache kubectl completion zsh # _evalcache kubectl completion zsh
fi fi
### mcfly ### mcfly
export MCFLY_KEY_SCHEME=vim export MCFLY_KEY_SCHEME=vim
if command -v mcfly > /dev/null; then if command -v mcfly > /dev/null; then
_evalcache mcfly init zsh # _evalcache mcfly init zsh
eval "$(mcfly init zsh)"
fi fi
### Poetry ### Poetry
@ -398,7 +400,7 @@ fi
### Volta ### Volta
if command -v volta > /dev/null; then if command -v volta > /dev/null; then
_evalcache volta completions zsh # _evalcache volta completions zsh
fi fi
### zoxide ### zoxide