forked from oshevtsov/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
42 lines (41 loc) · 870 Bytes
/
gitconfig
File metadata and controls
42 lines (41 loc) · 870 Bytes
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
[user]
email = jonas.cederberg@gmail.com
name = Jonas Cederberg
[includeIf "gitdir:~/dev/certainli/"]
path = ~/dev/certainli/.gitconfig-certainli
[includeIf "gitdir:~/dev/ferroamp/"]
path = ~/dev/ferroamp/.gitconfig-ferroamp
[safe]
directory = *
[core]
editor = nvim -f
[alias]
st = status
rb = rebase
rbc = rebase --continue
[color]
ui = true
[color "diff"]
meta = yellow
old = red
new = green
[color "status"]
added = green
changed = yellow
untracked = cyan
[rerere]
enabled = false
[pull]
rebase = true
[init]
defaultBranch = main
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
dark = true # or light = true, or omit for auto-detection
line-numbers = true
[merge]
# conflictstyle = zdiff3 # not available until git 2.35.1