tide/functions/lean_git_prompt.fish

8 lines
201 B
Fish
Raw Normal View History

2020-04-03 01:39:10 +03:00
function lean_git_prompt
2020-04-16 12:15:34 +03:00
set -l gitPrompt (fish_git_prompt)
2020-04-03 01:39:10 +03:00
2020-04-30 00:52:58 +03:00
set -l gitPrompt (string replace '(' '' $gitPrompt)
set -l gitPrompt (string replace ')' '' $gitPrompt)
2020-04-03 01:39:10 +03:00
echo $gitPrompt
end