tide/tide_theme/configure/fish_prompt.fish
2020-05-26 16:20:42 -07:00

22 lines
522 B
Fish

# Created by tide configure
function fish_prompt --description 'Write out the prompt'
set -g last_pipestatus $pipestatus
set -g last_status $status
set -g git_dir (git rev-parse --show-toplevel 2>/dev/null)
if test "$tide_newline" = 'true'
printf '%b' '\n'
end
set_color $tide_prompt_connection_color
printf "%.s$tide_prompt_connection_icon" (seq $COLUMNS)
set_color $fish_color_normal
printf '%b' '\r'
_tide_right_prompt
printf '%b' '\r'
_tide_left_prompt
end