mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-23 17:02:24 +03:00
8 lines
201 B
Fish
8 lines
201 B
Fish
function lean_git_prompt
|
|
set -l gitPrompt (fish_git_prompt)
|
|
|
|
set -l gitPrompt (string replace "(" "" $gitPrompt)
|
|
set -l gitPrompt (string replace ")" "" $gitPrompt)
|
|
|
|
echo $gitPrompt
|
|
end |