Skip to content

Instantly share code, notes, and snippets.

View thedanheller's full-sized avatar

Dan Heller thedanheller

View GitHub Profile
@thedanheller
thedanheller / .aliases
Created December 2, 2016 20:07
oh my zsh git aliases
amend='git commit --amend'
g=git
ga='git add'
gaa='git add --all'
gac='git add . && git commit -v'
gapa='git add --patch'
gb='git branch'
gba='git branch -a'
gbda='git branch --merged | command grep -vE "^(\*|\s*master\s*$)" | command xargs -n 1 git branch -d'
gbl='git blame -b -w'
@thedanheller
thedanheller / .zshrc
Last active September 26, 2016 12:56
My ZSH alias
alias g="git"
alias s="sudo"
alias n="npm"
alias ns="npm start"
alias nw="npm run watch"
alias ni="npm install"
alias cfgg="subl ~/.gitconfig"
alias cfgz="subl ~/.zshrc"
@thedanheller
thedanheller / .gitconfig
Last active September 26, 2016 12:39
Git config and aliases
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[user]
email = daniloprates@gmail.com
name = Danilo Prates
[http]
sslVerify = false
[push]
@thedanheller
thedanheller / Preferences.sublime-settings
Created July 31, 2016 03:07
My Sublime Text Settings
{
"Seti_orange_button": true,
"Seti_tabs_big": true,
"color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme",
"font_size": 14,
"ignored_packages":
[
"Vintage"
],
"theme": "Seti.sublime-theme",