From 65ce9b90d71c1c2f28e6ca43d89a059cb8163de8 Mon Sep 17 00:00:00 2001 From: Haak Saxberg Date: Wed, 12 Feb 2020 23:24:38 -0800 Subject: [PATCH] use a different git config flag --- nix/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/home.nix b/nix/home.nix index 89baf11..a9dc84e 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -114,7 +114,7 @@ in { # don't slow the shell down save_function git_prompt_status old_git_prompt_status function git_prompt_status() { - if [[ "$(command git config --get oh-my-zsh.hide-status 2>/dev/null)" != "1" ]]; then + if [[ "$(command git config --get oh-my-zsh.hide-prompt-status 2>/dev/null)" != "1" ]]; then old_git_prompt_status fi }