Initial go at trying to recreate re5et's prompt

This commit is contained in:
Nelson Chen 2015-01-06 00:25:13 -08:00
parent e36d3928f4
commit 827ccf62fd
1 changed files with 12 additions and 0 deletions

12
fish_prompt.fish Normal file
View File

@ -0,0 +1,12 @@
function __caret
end
function fish_prompt
echo -s (set_color -o cyan)(whoami)@(hostname)
echo '>'
end
function fish_right_prompt -d "Write out the right prompt"
date "+%m/%d/%y"
end