From b94a880a6941750c81b45fe2be7d726fbc2387a3 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Tue, 17 Dec 2019 15:50:39 -0700 Subject: [PATCH] develop#zsh: compinit needs -u to trust /nix/store --- profiles/develop/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/develop/zsh/zshrc b/profiles/develop/zsh/zshrc index a7f7b9bc..2c311faa 100644 --- a/profiles/develop/zsh/zshrc +++ b/profiles/develop/zsh/zshrc @@ -48,7 +48,7 @@ typeset -i updated_at=$(date +'%j' -r ~/.zcompdump \ # save time if completion cache has been update recently if [ $(date +'%j') != $updated_at ]; then - compinit + compinit -u else compinit -C fi