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