Created
September 22, 2018 06:44
-
-
Save ggrumbley/2ec072c06358255a103a85a4df9c46c2 to your computer and use it in GitHub Desktop.
Fish Prompt
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 | |
test $SSH_TTY | |
and printf (set_color red)$USER(set_color brwhite)'@'(set_color yellow)(prompt_hostname)' ' | |
test "$USER" = 'root' | |
and echo (set_color red)"#" | |
# Main | |
echo -n (set_color red)'λ' (set_color cyan)(prompt_pwd) (set_color green)'❯'(set_color yellow)'❯'(set_color red)'❯ ' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment