view gitconfig @ 214:16e267567c04

Add cursorline
author zegervdv <zegervdv@me.com>
date Fri, 05 Dec 2014 17:36:48 +0100
parents 1cdae31a21da
children 922772b646ce
line wrap: on
line source

# Sample gitconfig
#

[hub]
	protocol = ssh
[alias]
        co = checkout
        count   = !git shortlog -sn
        sl = log --oneline --stat
[color]
        diff = auto
        status = auto
        branch = auto
        ui = true
[core]
        excludesfile = ~/.gitignore
        editor = vim
	autocrlf = input
	pager = less -+F
[apply]
        whitespace = nowarn
[mergetool]
        keepBackup = false
[difftool]
	prompt = false
[help]
        autocorrect = 1
[include]
        path = .gitconfig.local
[push]
        # See `git help config` (search for push.default)
        # for more information on different options of the below setting.
        #
        # Setting to git 2.0 default to surpress warning message
        default = simple
[init]
        templatedir = ~/.templates/git
[diff]
        tool = mvimdiff
[difftool "mvimdiff"]
        cmd = mvim -f -d \"$LOCAL\" \"$REMOTE\"
[status]
        branch = 1
[filter "media"]
	clean = git-media-clean %f
	smudge = git-media-smudge %f
[pull]
	rebase = true
[rerere]
	enabled = true
[web]
  browser = open
[user]
	signingkey = Zeger Van de Vannet <[email protected]>