Skip to content

Instantly share code, notes, and snippets.

@keeganjk
Last active May 9, 2018 02:18
Show Gist options
  • Save keeganjk/3e2f8db1af21077181da85125549c89e to your computer and use it in GitHub Desktop.
Save keeganjk/3e2f8db1af21077181da85125549c89e to your computer and use it in GitHub Desktop.
config.fish for normal user
#~/cow; echo
fortune | cowsay -d; echo
function fish_prompt
set_color normal
echo -n '┌─ '
set_color FFA500
echo -n (whoami)
set_color white
echo -n '@'
set_color brblue
echo (prompt_hostname)
set_color normal
echo -n '└─ '
set_color green
echo -n (prompt_pwd)
set_color brgreen #normal
echo -n ' $ '
set_color normal
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment