Created
September 25, 2020 08:50
-
-
Save LinuxIsCool/169798b6216cec0aeaa846656c5574ba to your computer and use it in GitHub Desktop.
Backing up my favourite fish prompt. A modification of the gentoo omf theme.
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
function _virtualfish | |
if set -q VIRTUAL_ENV | |
echo -n -s (set_color white) "(" (basename "$VIRTUAL_ENV") ")" (set_color normal) " " | |
end | |
end | |
function fish_prompt | |
set fish_greeting | |
set -l cyan (set_color -o cyan) | |
set -l red (set_color -o red) | |
set -l blue (set_color -o blue) | |
set -l green (set_color -o green) | |
set -l normal (set_color normal) | |
_virtualfish | |
set -l cwd (pwd | sed -e "s!^$HOME!~!g") | |
# output the prompt, left to right: | |
# if [ (id -u) = "0" ]; | |
# set cwd (basename $cwd) | |
# # display host | |
# echo -n -s $red (hostname|cut -d . -f 1) " " | |
# else | |
# # display 'user@host:' | |
# echo -n -s $green (whoami) @ $green (hostname|cut -d . -f 1) " " | |
# end | |
echo -n -s "🌎 " | |
# display the current directory name: | |
echo -n -s $blue $cwd $normal | |
# show git branch and dirty state, if applicable: | |
if [ (_git_branch_name) ] | |
set -l git_branch '[' (_git_branch_name) ']' | |
if [ (_is_git_dirty) ] | |
set git_info $red $git_branch "×" | |
else | |
set git_info $cyan $git_branch | |
end | |
echo -n -s ' ' $git_info $normal | |
end | |
# terminate with a nice prompt char: | |
if [ (id -u) = "0" ]; | |
set indicate '#' | |
else | |
set indicate '🍄' | |
end | |
echo -n -s $blue " $indicate " $normal | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment