Use stow for managing dotfiles
This commit is contained in:
parent
7b29ee2104
commit
7fed1cf922
83 changed files with 61 additions and 40 deletions
10
zsh/.zsh/configs/git.zsh
Normal file
10
zsh/.zsh/configs/git.zsh
Normal file
|
@ -0,0 +1,10 @@
|
|||
# No arguments: `git status`
|
||||
# With arguments: acts like `git`
|
||||
g() {
|
||||
if [[ $# > 0 ]];
|
||||
then
|
||||
git $@
|
||||
else
|
||||
git status --short --branch
|
||||
fi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue