new commands, updated gitconfig

+ e opens $EDITOR (thanks @holman)
+ h is same as 'c' but in home directory (thanks @holman)
+ updated gitconfig
This commit is contained in:
Nick Nisi
2013-02-05 20:45:45 -06:00
parent fd79fe70c1
commit 99343b27a7
7 changed files with 26 additions and 22 deletions

7
bin/e Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
if [ "$1" == "" ]; then
exec $EDITOR .
else
exec $EDITOR $1
fi

1
bin/subl Symbolic link
View File

@@ -0,0 +1 @@
/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl