Use pure theme for #fishshell

This commit is contained in:
Colin Powell
2019-07-30 11:01:36 -04:00
parent a37c01cc6e
commit 224697d780
55 changed files with 914 additions and 1321 deletions

View File

@ -0,0 +1,5 @@
function git_is_repo -d "Test if the current directory is a Git repository"
if not command git rev-parse --git-dir > /dev/null 2>/dev/null
return 1
end
end