Skip to content

Instantly share code, notes, and snippets.

@specious
Last active December 30, 2024 06:46
Show Gist options
  • Save specious/50bac54ac9e4ba9b88dbf24623d51dfc to your computer and use it in GitHub Desktop.
Save specious/50bac54ac9e4ba9b88dbf24623d51dfc to your computer and use it in GitHub Desktop.
A fancy two-line prompt for the fish shell (https://github.com/fish-shell/fish-shell) with git integration
function fish_prompt
# Set colors
set -l red (set_color red)
set -l blue (set_color blue)
set -l yellow (set_color yellow)
set -l normal (set_color normal)
# Get username, hostname, job count, and current directory
set -l user (whoami)
set -l host (hostname)
set -l jobs (jobs | count)
set -l cwd (pwd)
# Build the prompt
echo -n "$red┌───=[ $normal$user$red :: $yellow$host$red ]-( $normal$jobs$red )-[ $normal$cwd$red ]"
# Get the git branch/ref (if in a git repository)
set -l git_branch (git rev-parse --abbrev-ref HEAD 2>/dev/null)
# Show the current git ref (if in a git repository)
if test -n "$git_branch"
echo -n "─( $blue$git_branch$red )"
end
echo
echo -n "$red└──( $normal"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment