To make you prompt look like this:
Add this to your ~/.bash_profile
export PS1="\[$(tput setaf 6)\]\u\[$(tput sgr0)\]@\[$(tput setaf 6)\]\h\[$(tput setaf 3)\] \w\n\[$(tput sgr0)\]> "
Or this to your ~/.config/fish/config.fish
(create it if it's not there):
# override the default prompt_pwd function
function prompt_pwd --description 'Print the current working directory, shortened to fit the prompt'
echo $PWD | sed -e "s|^$HOME|~|" -e 's|^/private||'
end
function fish_prompt
set_color cyan
echo -n (whoami)
set_color normal
echo -n '@'
set_color cyan
echo -n (hostname -s)
set_color yellow
echo ' '(prompt_pwd)
set_color normal
echo -n '> '
end