mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-05 21:20:31 +00:00
30 lines
657 B
Fish
30 lines
657 B
Fish
# name: L
|
|
function _git_branch_name
|
|
echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
|
|
end
|
|
|
|
function _is_git_dirty
|
|
echo (command git status -s --ignore-submodules=dirty ^/dev/null)
|
|
end
|
|
|
|
function fish_prompt
|
|
set -l blue (set_color blue)
|
|
set -l green (set_color green)
|
|
set -l normal (set_color normal)
|
|
|
|
set -l arrow "λ"
|
|
set -l cwd $blue(basename (prompt_pwd))
|
|
|
|
if [ (_git_branch_name) ]
|
|
set git_info $green(_git_branch_name)
|
|
set git_info ":$git_info"
|
|
|
|
if [ (_is_git_dirty) ]
|
|
set -l dirty "*"
|
|
set git_info "$git_info$dirty"
|
|
end
|
|
end
|
|
|
|
echo -n -s $cwd $git_info $normal ' ' $arrow ' '
|
|
end
|