dotfiles

A steaming hot pile of sh...ell scripts and configuration files.
git clone https://kaka.farm/~git/dotfiles
Log | Files | Refs

.gitconfig (927B)


      1 [alias]
      2 	c = checkout
      3 	d = diff
      4 	df = diff --word-diff
      5 	hash = rev-parse HEAD
      6 	l = log --all --graph --decorate --oneline
      7 	lg = log --all --graph --decorate --color
      8 	pushall = !git remote | xargs -P 0 -l git push --all -v
      9 	s = status
     10 [color]
     11 	ui = true
     12 [core]
     13 	editor = e # The bin/e script.
     14 	excludesfile = ~/.gitignore_global
     15         whitespace = tab-in-indent, trailing-space
     16 [diff]
     17 	tool = diff
     18 [difftool]
     19 	tool = meld
     20 [fetch]
     21 	parallel = 10
     22 [gc]
     23 	auto = 0
     24 [gui]
     25 	fontdiff = -family Inconsolata -size 16 -weight normal -slant roman -underline 0 -overstrike 0
     26 [init]
     27 	defaultBranch = master
     28 [merge]
     29 	tool = meld
     30 [mergetool]
     31 	cmd = meld "$LOCAL" "$MERGED" "$REMOTE"
     32 [push]
     33 	default = nothing
     34 [user]
     35 	useConfigOnly = true
     36 	email = yuval.langer@gmail.com
     37 	name = Yuval Langer
     38 [sendemail]
     39 	smtpserver = smtp.gmail.com
     40 	smtpUser = yuval.langer@gmail.com
     41 	smtpencryption = tls
     42 	smtpserverport = 587
     43 	smtpPass = "zrelomqxcwgkswou"