Last active
May 8, 2018 14:40
-
-
Save keeganjk/c0f40f224a458f67422d048ebfbaea11 to your computer and use it in GitHub Desktop.
Config.fish for root
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 | |
function fish_prompt | |
set_color normal | |
echo -n '┌─ ' | |
set_color brred | |
echo -n (whoami) | |
set_color white | |
echo -n '@' | |
set_color brblue | |
echo (prompt_hostname) | |
set_color normal | |
echo -n '└─ ' | |
set_color white | |
echo -n (prompt_pwd) | |
set_color brred | |
echo -n ' ⚡ ' | |
set_color normal | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment