From ce71fcf5bac20a5706e284571b0dc8f718760bd4 Mon Sep 17 00:00:00 2001 From: Georgi Dimitrov Date: Thu, 16 Apr 2020 17:16:50 +0100 Subject: [PATCH] Temporarily disable zsh-completions https://github.com/zsh-users/zsh-completions/issues/603 --- zsh/zshrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zsh/zshrc b/zsh/zshrc index 1fa01599..14cdce20 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -51,7 +51,10 @@ source "${ZSH}/oh-my-zsh.sh" zstyle ':completion:*:*:make::' tag-order 'targets variables' # Reload the completions -autoload -U compinit && compinit +# autoload -U compinit && compinit +if [ $commands[skaffold] ]; then + source <(skaffold completion zsh) +fi # zsh-autosuggestions settings ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=7"