Created
January 5, 2016 10:20
-
-
Save eyelash/43ed02ccc78982665955 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fish_prompt | |
| set prompt (prompt_pwd) | |
| if set branch (git rev-parse --abbrev-ref HEAD ^/dev/null) | |
| set prompt $prompt (set_color $fish_color_autosuggestion) ' | ' (set_color normal) $branch (set_color normal) | |
| end | |
| set prompt $prompt (set_color $fish_color_autosuggestion) ' > ' (set_color normal) | |
| echo -n -s $prompt | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment