feat: lots of changes, wrote own fish theme

This commit is contained in:
2020-02-22 21:32:57 +01:00
parent 493ea5d7bd
commit 39f4f893c6
11 changed files with 383 additions and 2 deletions

View File

@ -0,0 +1,20 @@
# by T31M
function prompt::awsenv
if test -n "$env"
echo -n -s "[aws=$env]"
end
end
function prompt::pyenv
if test -n "$PYENV_VERSION"
echo -n -s "[$PYENV_VERSION]"
end
end
function t31m_prompt
set awsenv (prompt::awsenv)
set pyenv (prompt::pyenv)
echo -n -s (red)"$awsenv"(cyan)"$pyenv"
end