Skip to content

Instantly share code, notes, and snippets.

function fish_prompt
# 1行目: カレントディレクトリ + gitブランチ
printf '%s%s' (prompt_pwd) (fish_git_prompt)
# 改行して 2行目に >
printf '\n> '
end
~