mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-19 10:01:57 +03:00
9 lines
247 B
Fish
9 lines
247 B
Fish
function _lean_git_prompt
|
|
if set -l gitPrompt (fish_git_prompt)
|
|
|
|
set -l gitPrompt (string replace '(' '' $gitPrompt)
|
|
set -l gitPrompt (string replace ')' '' $gitPrompt)
|
|
|
|
printf '%s ' (string trim $gitPrompt)
|
|
end
|
|
end |