Skip to content

Instantly share code, notes, and snippets.

@ggrumbley
Created September 22, 2018 06:44
Show Gist options
  • Save ggrumbley/2ec072c06358255a103a85a4df9c46c2 to your computer and use it in GitHub Desktop.
Save ggrumbley/2ec072c06358255a103a85a4df9c46c2 to your computer and use it in GitHub Desktop.
Fish Prompt
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