Skip to content

Commit

Permalink
Revert "Sync git dirty character"
Browse files Browse the repository at this point in the history
This reverts commit a49c048.

Fix airline default:

let g:airline_symbols.dirty='+'
  • Loading branch information
miekg committed Jul 14, 2024
1 parent a49c048 commit 5c0a145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prompt_lean_setup
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ prompt_lean_git_dirty() {
local umode="-uno" #|| local umode="-unormal"
command test -n "$(git status --porcelain --ignore-submodules ${umode} 2>/dev/null | head -100)"

(($? == 0)) && echo '!'
(($? == 0)) && echo '+'
}

# displays the exec time of the last command if set threshold was exceeded
Expand Down

0 comments on commit 5c0a145

Please sign in to comment.