use GNU stow for setup

This commit is contained in:
Thomas Ruoff
2018-05-09 00:08:38 +02:00
parent 5d78e5848d
commit f9c702ed55
33 changed files with 24 additions and 149 deletions

9
zsh/.zsh/functions/g Normal file
View File

@@ -0,0 +1,9 @@
# No arguments: `git status`
# With arguments: acts like `git`
g() {
if [[ $# -gt 0 ]]; then
git "$@"
else
git status
fi
}