forked from yous/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
40 lines (40 loc) · 797 Bytes
/
gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[core]
attributesFile = ~/.gitattributes_global
excludesFile = ~/.gitignore_global
editor = vim
pager = less -F -R -X
precomposeUnicode = true
quotePath = false
[color]
ui = auto
[diff]
compactionHeuristic = true
renames = true
[diff "nodiff"]
command = true
[diff "utf-16"]
textconv = iconv -f utf-16 -t utf-8
[difftool]
prompt = false
[fetch]
prune = true
[filter "lfs"]
required = true
clean = git-lfs clean %f
smudge = git-lfs smudge %f
[include]
path = ~/.gitconfig.local
[interactive]
diffFilter = diff-highlight
[log]
date = iso8601
[pager]
diff = diff-highlight | $(git config core.pager)
log = diff-highlight | $(git config core.pager)
show = diff-highlight | $(git config core.pager)
[push]
default = simple
[submodule]
fetchJobs = 0
[user]
useConfigOnly = true