-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
66 lines (66 loc) · 2.1 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[init]
templatedir = ~/.git_template
[push]
default = current
[color]
ui = auto
[alias]
aa = add --all
ap = add --patch
branches = for-each-ref --sort=-committerdate --format=\"%(color:blue)%(authordate:relative)\t%(color:red)%(authorname)\t%(color:white)%(color:bold)%(refname:short)\" refs/remotes
ci = commit -v
co = checkout
st = status
[core]
excludesfile = ~/.gitignore
autocrlf = input
# define command which will be used when "nvim" is set as a merge tool
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
# set "nvim" as tool for merging
[merge]
tool = nvim
# automatically launch merge tool without displaying a prompt
[mergetool]
prompt = false
[commit]
template = ~/.gitmessage
[fetch]
prune = true
[rebase]
autosquash = true
[include]
path = ~/.gitconfig.local
[user]
name = Tommaso Patrizi
email = [email protected]
[submodule]
recurse = true
[maintenance]
repo = /home/tommasop/Git/fzf-tab
repo = /home/tommasop/Git/ohmyzsh
repo = /home/tommasop/Git/prezto
repo = /home/tommasop/Git/spaceship-prompt
repo = /home/tommasop/Git/zsh-autocomplete
repo = /home/tommasop/Git/zsh-autosuggestions
repo = /home/tommasop/Git/zsh-snap
repo = /home/tommasop/Git/zsh-syntax-highlighting
repo = /home/tommasop/Git/Aloxaf/fzf-tab
repo = /home/tommasop/Git/ohmyzsh/ohmyzsh
repo = /home/tommasop/Git/sorin-ionescu/prezto
repo = /home/tommasop/Git/spaceship-prompt/spaceship-prompt
repo = /home/tommasop/Git/zsh-users/zsh-autosuggestions
repo = /home/tommasop/Git/zsh-users/zsh-syntax-highlighting
repo = /home/tommasop/Git/marlonrichert/zsh-autocomplete
repo = /home/tommasop/Repos/znap
repo = /home/tommasop/Repos/Aloxaf/fzf-tab
repo = /home/tommasop/Repos/ellie/atuin
repo = /home/tommasop/Repos/marlonrichert/zsh-autocomplete
repo = /home/tommasop/Repos/marlonrichert/zsh-hist
repo = /home/tommasop/Repos/ohmyzsh/ohmyzsh
repo = /home/tommasop/Repos/sorin-ionescu/prezto
repo = /home/tommasop/Repos/spaceship-prompt/spaceship-prompt
repo = /home/tommasop/Repos/zsh-users/zsh-autosuggestions
repo = /home/tommasop/Repos/zsh-users/zsh-syntax-highlighting
[pull]
rebase = false