-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
101 lines (101 loc) · 2.66 KB
/
dot_gitconfig
File metadata and controls
101 lines (101 loc) · 2.66 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[user]
name = Mikael Muszynski
useConfigOnly = true
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJbNXYAODcS+8hoLyAQEE6zX8GM8RGQBgBLysRcecS61
[merge]
tool = vimdiff
defaultToUpstream = true
conflictstyle = zdiff3
[mergetool]
prompt = true
[mergetool "vimdiff"]
cmd = nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
[branch]
sort = -committerdate
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = green
changed = yellow
untracked = cyan
[column]
ui = auto
[core]
autocrlf = input
attributesfile = ~/.gitattributes_global
excludesfile = ~/.gitignore_global
pager = delta
[github]
user = linduxed
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = ~/.config/git/allowed_signers
[push]
default = simple
autoSetupRemote = true
followTags = true
[alias]
delete-branch = !sh -c 'git push origin :refs/heads/$1 && git remote prune origin && git branch -D $1' -
chp = cherry-pick
[init]
defaultBranch = master
[web]
browser = xdg-open
[include]
path = ~/.gitconfig_overrides
[rebase]
autosquash = true
updateRefs = true
[rerere]
enabled = true
autoupdate = true
[diff]
algorithm = histogram
compactionHeuristic = true
colorMoved = plain
wsErrorHighlight = all
mnemonicPrefix = true
renames = true
[commit]
verbose = true
gpgsign = true
[submodule]
fetchJobs = 4
[interactive]
diffFilter = delta --color-only
[delta]
line-numbers = true
decorations = true
navigate = true
; light = true
; side-by-side = true
whitespace-error-style = 22 reverse
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
[pretty]
brief = "format:%C(yellow)%h%C(reset) %s%n%C(cyan)%an %C(dim white)(%ar)%C(auto)%d%C(reset)%n"
fuller-mod = "%C(bold)Commit:%C(reset) %C(yellow)%H%n%C(reset)Refs: %C(auto)%d%n%C(bold)Author:%C(reset) %C(cyan)%an <%ae>%n%C(bold)AuthorDate:%C(reset) %C(dim white)%ai (%ar)%C(reset)%n%C(bold)Committer:%C(reset) %C(cyan)%cn <%ce>%n%C(bold)CommitterDate:%C(reset) %C(dim white)%ci (%cr)%C(reset)%n%w(0, 4, 4)%+B%n"
oneline-mod = "%C(yellow)%h%C(reset) %C(dim white)(%ar)%C(reset) %s%C(auto)%d%C(reset)"
[format]
pretty = fuller-mod
[tag]
sort = version:refname
[help]
autocorrect = prompt
[blame]
markIgnoredLines = true
markUnblamableLines = true