From 90d8d7258bbbbc1b8a46570941cb7b548f86012e Mon Sep 17 00:00:00 2001 From: bretello Date: Thu, 3 Dec 2020 20:24:31 +0100 Subject: [PATCH] zsh: show git status as clean with untracked files --- brethil_dotfile.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/brethil_dotfile.sh b/brethil_dotfile.sh index 5eb5f25..67bc63e 100755 --- a/brethil_dotfile.sh +++ b/brethil_dotfile.sh @@ -1,11 +1,14 @@ # Check for update, set DISABLE_UPDATE_PROMPT=yes to disable the prompt and automatically update env DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT DOTFILES=$DOTFILES zsh -f $DOTFILES/check_for_update.sh +# theme-related variables +export ZSH_THEME="brethil" +export DISABLE_UNTRACKED_FILES_DIRTY=true +export VIRTUAL_ENV_DISABLE_PROMPT=true + +# Source all other plugins source <(antibody init) export ZSH=$(antibody path robbyrussell/oh-my-zsh) -export ZSH_THEME="brethil" -export VIRTUAL_ENV_DISABLE_PROMPT=1 # theme-related - antibody bundle < $DOTFILES/antibody_plugins.txt uname="$(uname -a)"