Skip to content

Instantly share code, notes, and snippets.

@filipelinhares
Created May 3, 2016 13:39
Show Gist options
  • Save filipelinhares/ad0f5aaa8ca6c38400eaf5ddaf6918a3 to your computer and use it in GitHub Desktop.
Save filipelinhares/ad0f5aaa8ca6c38400eaf5ddaf6918a3 to your computer and use it in GitHub Desktop.
set fish_color_user ffd787
set fish_color_host 0087d7
function fish_prompt --description 'Write out the prompt'
set -l last_status $status
# Just calculate these once, to save a few cycles when displaying the prompt
if not set -q __fish_prompt_hostname
set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
end
if not set -q __fish_prompt_normal
set -g __fish_prompt_normal (set_color normal)
end
set -l delim '>'
switch $USER
case root
if not set -q __fish_prompt_cwd
if set -q fish_color_cwd_root
set -g __fish_prompt_cwd (set_color $fish_color_cwd_root)
else
set -g __fish_prompt_cwd (set_color $fish_color_cwd)
end
end
case '*'
if not set -q __fish_prompt_cwd
set -g __fish_prompt_cwd (set_color $fish_color_cwd)
end
end
set -l prompt_status
if test $last_status -ne 0
if not set -q __fish_prompt_status
set -g __fish_prompt_status (set_color $fish_color_status)
end
set prompt_status "$__fish_prompt_status [$last_status]$__fish_prompt_normal"
end
if not set -q __fish_prompt_user
set -g __fish_prompt_user (set_color $fish_color_user)
end
if not set -q __fish_prompt_host
set -g __fish_prompt_host (set_color $fish_color_host)
end
echo -n -s "$__fish_prompt_user" "$USER" "$__fish_prompt_normal" @ "$__fish_prompt_host" "$__fish_prompt_hostname" "$__fish_prompt_normal" ' ' "$__fish_prompt_cwd" (pwd)
echo -n -s (set_color brown) (__fish_git_prompt) (set_color normal)
if set -q VIRTUAL_ENV
echo -n -s (set_color red) " [" (basename "$VIRTUAL_ENV") "]" (set_color normal) " "
end
echo -n -s "$__fish_prompt_normal" "$prompt_status"
echo
echo "$delim" ''
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment