-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
49 lines (37 loc) · 843 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
41
42
43
44
45
46
47
48
49
[user]
name = Luciano Maiwald
email = [email protected]
[github]
user = maiwald
[color]
status = auto
branch = auto
diff = auto
interactive = auto
[alias]
g = "!source ~/.githelpers && pretty_git_log"
b = "!source ~/.githelpers && pretty_git_branch"
[core]
editor = nvim
autocrlf = input
excludesfile = ~/.gitignore
pager = diff-so-fancy | less --tabs 4 -RFX
precomposeUnicode = true
[push]
default = simple
autoSetupRemote = true
[branch]
autosetuprebase = always
[commit]
verbose = true
[diff]
algorithm = patience
tool = nvimdiff
[init]
defaultBranch = main
[url "[email protected]:"]
insteadOf = https://gitlab2.holzbruecke7.de/
[difftool]
prompt = true
[difftool "nvimdiff"]
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""