diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2020-08-09 12:18:08 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2020-08-09 12:18:08 +0200 |
commit | 596620585be7afe89248238d7f2073df54717344 (patch) | |
tree | f91cf3c75eb8166fa077b0418febae1273cfa974 /.gitconfig | |
parent | 8e13717228c7a8ef37c5b2811b5cd2fac9f22c9f (diff) | |
download | dotfiles-596620585be7afe89248238d7f2073df54717344.tar.gz dotfiles-596620585be7afe89248238d7f2073df54717344.tar.bz2 dotfiles-596620585be7afe89248238d7f2073df54717344.zip |
Git configuration
Diffstat (limited to '.gitconfig')
-rw-r--r-- | .gitconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..236bb47 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,17 @@ +[user] + name = Óscar Nájera + email = hi@oscarnajera.com +[pull] + rebase = true +[push] + default = simple +[core] + attributesfile = ~/.gitattributes +[diff "pdf"] + textconv = pdfinfo +[difftool "image_diff"] + cmd = compare $REMOTE $LOCAL png:- | montage -font Liberation-Sans -tile 3x -geometry 400x -label "reference" $LOCAL -label "diff" - -label "current--%f" $REMOTE x: +[diff] + algorithm = histogram +[includeIf "gitdir:~/git/"] + path = ~/git/.gitconfig |