mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-19 21:43:41 +08:00
56b3b27206
The terlar prompt uses `|branch`, this is visually quite important.
60 lines
2.1 KiB
Fish
60 lines
2.1 KiB
Fish
# name: Terlar
|
|
# author: terlar - https://github.com/terlar
|
|
|
|
function fish_prompt --description 'Write out the prompt'
|
|
set -l last_status $status
|
|
|
|
prompt_login
|
|
|
|
echo -n ':'
|
|
|
|
# PWD
|
|
set_color $fish_color_cwd
|
|
echo -n (prompt_pwd)
|
|
set_color normal
|
|
|
|
set -q __fish_git_prompt_showdirtystate
|
|
or set -g __fish_git_prompt_showdirtystate 1
|
|
set -q __fish_git_prompt_showuntrackedfiles
|
|
or set -g __fish_git_prompt_showuntrackedfiles 1
|
|
set -q __fish_git_prompt_showcolorhints
|
|
or set -g __fish_git_prompt_showcolorhints 1
|
|
set -q __fish_git_prompt_color_untrackedfiles
|
|
or set -g __fish_git_prompt_color_untrackedfiles yellow
|
|
set -q __fish_git_prompt_char_untrackedfiles
|
|
or set -g __fish_git_prompt_char_untrackedfiles '?'
|
|
set -q __fish_git_prompt_color_invalidstate
|
|
or set -g __fish_git_prompt_color_invalidstate red
|
|
set -q __fish_git_prompt_char_invalidstate
|
|
or set -g __fish_git_prompt_char_invalidstate '!'
|
|
set -q __fish_git_prompt_color_dirtystate
|
|
or set -g __fish_git_prompt_color_dirtystate blue
|
|
set -q __fish_git_prompt_char_dirtystate
|
|
or set -g __fish_git_prompt_char_dirtystate '*'
|
|
set -q __fish_git_prompt_char_stagedstate
|
|
or set -g __fish_git_prompt_char_stagedstate '✚'
|
|
set -q __fish_git_prompt_color_cleanstate
|
|
or set -g __fish_git_prompt_color_cleanstate green
|
|
set -q __fish_git_prompt_char_cleanstate
|
|
or set -g __fish_git_prompt_char_cleanstate '✓'
|
|
set -q __fish_git_prompt_color_stagedstate
|
|
or set -g __fish_git_prompt_color_stagedstate yellow
|
|
set -q __fish_git_prompt_color_branch_dirty
|
|
or set -g __fish_git_prompt_color_branch_dirty red
|
|
set -q __fish_git_prompt_color_branch_staged
|
|
or set -g __fish_git_prompt_color_branch_staged yellow
|
|
set -q __fish_git_prompt_color_branch
|
|
or set -g __fish_git_prompt_color_branch green
|
|
set -q __fish_git_prompt_char_stateseparator
|
|
or set -g __fish_git_prompt_char_stateseparator '⚡'
|
|
fish_vcs_prompt '|%s'
|
|
echo
|
|
|
|
if not test $last_status -eq 0
|
|
set_color $fish_color_error
|
|
end
|
|
|
|
echo -n '➤ '
|
|
set_color normal
|
|
end
|