fish: initial commit

This commit is contained in:
Robert Kmiec
2019-04-25 10:08:18 +02:00
parent b06f7798f2
commit 0a6c6e5605
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
function fish_prompt
set test $status
set_color -o green
echo -n (hostname)
set_color normal
echo -n ':'
set_color -o blue
prompt_pwd | tr -d '\n'
set_color normal
echo -n " $test\$ "
end