-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
52 lines (52 loc) · 1.15 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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Pedram Navid
email = 1045990+PedramNavid@users.noreply.github.com
[core]
editor = nvim
excludesfile = ~/.gitignore
attributesFile = ~/.gitattributes
[push]
autoSetupRemote = true
[init]
defaultBranch = main
[fetch]
prune = true
[diff]
colorMoved = zebra
tool = nvimdiff
[difftool]
prompt = true
trustExitCode = true
[difftool "kitty"]
cmd = kitty +kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitty kitty +kitten diff $LOCAL $REMOTE
[credential]
helper = store
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
[pull]
rebase = true
[rebase]
autoStash = true
[alias]
staash = stash --all
co = checkout
br = branch
ci = commit
st = status
last = log -1 HEAD
[difftool "nvimdiff"]
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
[mergetool "nvim"]
cmd = nvim -d -c \"wincmd l\" -c \"norm ]c\" \"$LOCAL\" \"$MERGED\" \"$REMOTE\"
[maintenance]
repo = /Users/pedram/projects/internal
repo = /Users/pedram/projects/dagster
[rerere]
enabled = true