Skip to content

Instantly share code, notes, and snippets.

@reneras
Created June 7, 2013 10:40
Show Gist options
  • Save reneras/5728469 to your computer and use it in GitHub Desktop.
Save reneras/5728469 to your computer and use it in GitHub Desktop.
Dandy dotfiles for git, gem & zsh
---
:update_sources: true
:verbose: true
:bulk_threshold: 1000
:backtrace: false
:benchmark: false
gem: --no-ri --no-rdoc
[user]
name = René Ras
email = mail@reneras.nl
[http]
sslVerify = false
[mergetool]
keepBackup = true
[core]
quotepath = false
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore_global
[color]
ui = true
[color "branch"]
current = yellow black
local = yellow
remote = magenta
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red reverse
new = green reverse
whitespace = white reverse
[color "status"]
added = yellow
changed = green
untracked = cyan reverse
branch = magenta
[push]
default = current
[pull]
default = current
#git
alias gf="git fetch"
#file system
alias biggest='find -type f -printf '\''%s %p\n'\'' | sort -nr | head -n 40 | gawk "{ print \$1/1000000 \" \" \$2 \" \" \$3 \" \" \$4 \" \" \$5 \" \" \$6 \" \" \$7 \" \" \$8 \" \" \$9 }"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment