Skip to content

Instantly share code, notes, and snippets.

@a1ip
Forked from KELiON/fish_prompt.fish
Last active September 21, 2021 00:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a1ip/db6282d3aeb9f2f43ac7 to your computer and use it in GitHub Desktop.
Save a1ip/db6282d3aeb9f2f43ac7 to your computer and use it in GitHub Desktop.
function _git_branch_name
echo (git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
end
function _is_git_dirty
echo (git status -s --ignore-submodules=dirty ^/dev/null)
end
function _rb_prompt
echo (rvm info | awk '{print $1}')
end
function fish_prompt
set -l cyan (set_color -o cyan)
set -l yellow (set_color -o yellow)
set -l red (set_color -o red)
set -l blue (set_color -o blue)
set -l normal (set_color normal)
set -l arrow "$red➜ $normal"
set -l cwd $cyan(prompt_pwd)
set -l ruby_version $yellow(_rb_prompt)
set -l ruby_version "$ruby_version$normal in "
if [ (_git_branch_name) ]
set -l git_branch $red(_git_branch_name)
set git_info "$blue on $git_branch$blue"
if [ (_is_git_dirty) ]
set -l dirty "$yellow ✗"
set git_info "$git_info$dirty"
end
end
echo -s $ruby_version $cwd $git_info $normal \n $arrow " "
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment