From 827ccf62fd263a2320ea5e7c51c8d3357ce7b9da Mon Sep 17 00:00:00 2001 From: Nelson Chen Date: Tue, 6 Jan 2015 00:25:13 -0800 Subject: [PATCH] Initial go at trying to recreate re5et's prompt --- fish_prompt.fish | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fish_prompt.fish diff --git a/fish_prompt.fish b/fish_prompt.fish new file mode 100644 index 0000000..1725c53 --- /dev/null +++ b/fish_prompt.fish @@ -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