Add fish, scripts and git

This commit is contained in:
2021-02-14 21:37:08 +01:00
parent d0ad79e63b
commit 7d2921b09e
12 changed files with 295 additions and 0 deletions

8
fish/functions/g.fish Normal file
View File

@@ -0,0 +1,8 @@
function g --wraps git
if count $argv >/dev/null
git $argv
else
git status
git l -5
end
end