-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitconfig
More file actions
63 lines (63 loc) · 1.8 KB
/
.gitconfig
File metadata and controls
63 lines (63 loc) · 1.8 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
[user]
name = Lento Manickathan
email = lento.manickathan@gmail.com
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBaxHjLqa71+eIoaqggFtS/SB8wr7OXPd1E0lNgZY2AS
[gpg]
format = ssh
[gpg "ssh"]
program = "/opt/1Password/op-ssh-sign"
allowedSignersFile = /home/lento/.ssh/allowed_signers
[commit]
gpgsign = true
verbose = true
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[core]
editor = nvim
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
syntax-theme = gruvbox-dark
dark = true
hunk-header-style = omit
inline-hint-style = syntax
navigate = true
line-numbers = true
line-numbers-minus-style = brightred
line-numbers-plus-style = brightgreen
; side-by-side = true
[credential]
helper = cache --timeout=36000
[color "status"]
changed = yellow
untracked = blue
[init]
defaultBranch = main
[diff]
colorMoved = default
algorithm = histogram
[rebase]
updateRefs = true
[alias]
lognice=log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all
logstat=log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold green)(%cr) %C(bold blue)<%an>%Creset' --stat
loggraph=log --oneline --decorate --graph --all
logshort=log --oneline --decorate --graph
type = cat-file -t
dump = cat-file -p
# Difftastic aliases, so `git dlog` is `git log` with difftastic and so on.
dlog = -c diff.external=difft log -p --ext-diff
dshow = -c diff.external=difft show --ext-diff
ddiff = -c diff.external=difft diff
[tag]
sort = version:refname
[branch]
sort = -committerdate
[push]
autoSetupRemote = true
[merge]
conflictstyle = zdiff3