Last active
December 30, 2024 06:46
-
-
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
This file contains 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 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