This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "Angelfirenze" | |
git config --global user.email "[email protected]" | |
git config --global core.autocrlf true | |
git config --global push.default simple | |
git config --global pull.rebase true | |
git config --global rerere.enabled true | |
git config --global color.ui true | |
git config --global alias.s "status -s" | |
git config --global alias.lg "log --oneline --decorate --all --graph" | |
git config --global credential.helper wincred |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
I hereby claim:
- I am angelfirenze01 on github.
- I am angelfirenze (https://keybase.io/angelfirenze) on keybase.
- I have a public key ASAOiJ3HIu0JGnswaNaytyiWEG-LtWSXOZp58Vaxp3BPGgo
To claim this, I am signing this object:
I hereby claim:
- I am Angelfirenze01 on Github.
- I am angelfirenze (https://keybase.io/angelfirenze) on keybase.
- I have a public key ASDRaJaiMdMdxA1485woA9-GGpsUBURIFQWs7Wt_vpUR7wo
To claim this, I am signing this object:
A Pen by Angelfirenze on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TEXT EDITORS | |
EDITOR="Visual" | |
VISUAL="Vim" | |
[merge] | |
tool = sublimerge | |
[mergetool "sublimerge"] | |
cmd = subl -n --wait \"$REMOTE\" \"$BASE\" \"$LOCAL\" \"$MERGED\" --command \"sublimerge_diff_views\" | |
trustExitCode = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
interactive = auto | |
ui = true | |
pager = true | |
[color "branch"] | |
current = yellow reverse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DIRECTORIES | |
alias dev="cd ~/Developer/dev" | |
alias sy="cd ~/Developer/dev/sincerely" | |
# APPLICATIONS | |
alias lime="/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl" | |
alias markdown="/Applications/Markdown\ Pro.app/Contents/MacOS/Markdown\ Pro" | |
# ANDROID | |
export ANDROID_HOME=`brew --prefix android-sdk` |
NewerOlder