Last active
May 9, 2018 02:18
-
-
Save keeganjk/3e2f8db1af21077181da85125549c89e to your computer and use it in GitHub Desktop.
config.fish for normal user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#~/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