-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
59 lines (48 loc) · 1.09 KB
/
.gitconfig
File metadata and controls
59 lines (48 loc) · 1.09 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
[user]
name = Aleksandr Osipov
email = osipov.as89@gmail.com
[core]
excludesfile = ~/.gitignore
editor = vim
[branch]
sort = -committerdate
[tag]
sort = version:refname
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[color]
ui = true
[column]
ui = auto
[alias]
lease = push --force-with-lease
ci = commit
co = checkout
di = diff
st = status
in = pull --dry-run
out = log --branches --not --remotes
graph = log --graph --date-order -C -M --pretty=format:\"<%h> %ad %C(green)%d%Creset %s [%an]\" --date=short --glob=heads/
[pull]
ff = only
[push]
default = simple
autoSetupRemote = true
followTags = true
[interactive]
diffFilter = delta --color-only
[delta]
syntax-theme = Visual Studio Dark+
navigate = true
file-style = white
file-decoration-style = grey ol
hunk-header-decoration-style = dim grey box
line-numbers = true
line-numbers-left-format = "{nm}┊"
line-numbers-right-format = "{np}│"
line-numbers-left-style = dim grey
line-numbers-right-style = dim grey
keep-plus-minus-markers = true