mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
The git config oh-my-zsh.hide-status now turns off time since last commit
This commit is contained in:
parent
3ea3384186
commit
35826e3e01
1 changed files with 28 additions and 25 deletions
|
|
@ -38,6 +38,8 @@ function _ruby_version() {
|
||||||
# Determine the time since last commit. If branch is clean,
|
# Determine the time since last commit. If branch is clean,
|
||||||
# use a neutral color, otherwise colors will vary according to time.
|
# use a neutral color, otherwise colors will vary according to time.
|
||||||
function _git_time_since_commit() {
|
function _git_time_since_commit() {
|
||||||
|
# Turn off fetching time if oh-my-zsh.hide-status == 1
|
||||||
|
if [[ "$(command git config --get oh-my-zsh.hide-status 2>/dev/null)" != "1" ]]; then
|
||||||
# Only proceed if there is actually a commit.
|
# Only proceed if there is actually a commit.
|
||||||
if git log -1 > /dev/null 2>&1; then
|
if git log -1 > /dev/null 2>&1; then
|
||||||
# Get the last commit.
|
# Get the last commit.
|
||||||
|
|
@ -65,6 +67,7 @@ function _git_time_since_commit() {
|
||||||
color=$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL
|
color=$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL
|
||||||
echo "$color$commit_age%{$reset_color%}"
|
echo "$color$commit_age%{$reset_color%}"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ $USER == "root" ]]; then
|
if [[ $USER == "root" ]]; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue