mirror of
https://git.adityakumar.xyz/config.git
synced 2024-11-09 20:19:44 +00:00
20 lines
283 B
Fish
20 lines
283 B
Fish
|
set fish_greeting
|
||
|
set PS1 '[\u@\h \W]\$ '
|
||
|
function msdos_pwd
|
||
|
{
|
||
|
local dir="`pwd`"
|
||
|
|
||
|
echo $dir | tr '/' '\\'
|
||
|
}
|
||
|
end
|
||
|
set PS1 'C:`msdos_pwd`>'
|
||
|
export PS1
|
||
|
|
||
|
function fish_prompt
|
||
|
echo "C:$PWD>"
|
||
|
end
|
||
|
echo
|
||
|
echo "Microsoft(R) Windows 95"
|
||
|
echo " (C)Copyright Microsoft Corp 1981-1996."
|
||
|
echo
|