view dot_gitconfig.tmpl @ 319:b93f12d23fbd

Rename init.lua to config.lua init.lua is now automatically sourced, and runs before init.vim causing issues like lspconfig that cannot be found. Renaming to something that will not be sourced automatically and manually load it from init.vim when all plugins are loaded
author Zeger Van de Vannet <zegervdv@me.com>
date Thu, 17 Dec 2020 17:49:14 +0100
parents 994e456b145e
children d8216ea00ad1
line wrap: on
line source

[user]
	email = {{ .email }}
	name = {{ .name }}
	signingkey = {{ .signingkey }}
[rebase]
	autosquash = true
	autostash = true
[commit]
	gpgsign = true
	verbose = true
[pull]
	rebase = true
[gpg]
	program = gpg
[merge]
	tool = splice
[mergetool "splice"]
	cmd = "nvim -f $BASE $LOCAL $REMOTE $MERGED -c 'SpliceInit'"
	trustExitCode = true
[alias]
	ls = log --format=\"%C(auto)%h %<(15)%C(auto, green)%cr %>(20)%C(auto, magenta)%an %C(auto)%s %D\"
	tags = tag -l --sort creatordate --column
[core]
	excludesfile = ~/.gitignore
	editor = nvim
	autocrlf = input
	pager = less -+F
[help]
	autocorrect = 1
[color]
	diff = always
	status = always
	branch = always
	ui = true
{{- if eq .chezmoi.username "zvandeva" }}
[url "https://"]
	insteadOf = git://
{{- end }}