Skip to content

Instantly share code, notes, and snippets.

@ishiy1993
Created November 13, 2016 00:14
Show Gist options
  • Save ishiy1993/90551e7499a8855d810341bdbd23e1e1 to your computer and use it in GitHub Desktop.
Save ishiy1993/90551e7499a8855d810341bdbd23e1e1 to your computer and use it in GitHub Desktop.
fishのプロンプト
set __fish_git_prompt_showdirtystate 'yes'
set __fish_git_prompt_showstashstate 'yes'
set __fish_git_prompt_showupstream 'yes'
set __fish_git_prompt_color_branch yellow
function fish_prompt --description 'Write out the prompt'
printf '%s%s%s@%s%s%s%s\n> ' (set_color --bold magenta) (whoami) (set_color normal) (set_color blue) (echo $PWD) (set_color normal) (__fish_git_prompt)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment