2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-09 13:10:27 +00:00
steffen-dotfiles/.gitconfig

112 lines
2.1 KiB
INI
Raw Normal View History

[include]
path = ~/.gitconfig.user
[core]
excludesfile = ~/.gitignore
autocrlf = input
eol = lf
2022-03-18 11:55:13 +00:00
pager = delta
[color]
ui = auto
2016-06-15 19:30:24 +00:00
[color "branch"]
current = yellow reverse
local = yellow
remote = green
2016-06-15 19:30:24 +00:00
[color "diff"]
2016-08-17 20:20:34 +00:00
meta = yellow
commit = green
frag = magenta
old = red
new = green
whitespace = red reverse
2016-06-15 19:30:24 +00:00
[color "diff-highlight"]
2016-08-17 20:20:34 +00:00
newNormal = green
newHighlight = green 22
oldNormal = red
oldHighlight = red 52
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
2024-07-11 10:09:38 +00:00
a = add
b = branch
br = branch -a
c = checkout
2014-02-01 15:07:33 +00:00
cl = clean -f -d
cm = commit
co = checkout
cp = cherry-pick
2024-07-11 12:13:51 +00:00
d = diff
2017-08-08 11:45:42 +00:00
fame = shortlog -sn --all --no-merges
2024-07-11 10:09:38 +00:00
git = !git
2016-08-17 20:20:34 +00:00
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset' --abbrev-commit
2024-07-11 10:09:38 +00:00
m = merge
mg = merge
pl = pull
ps = push
rs = reset HEAD --hard
s = status
st = status
2012-09-18 12:09:25 +00:00
[diff]
tool = nvim -d
guitool = nvim -d
2016-06-15 19:30:24 +00:00
compactionHeuristic = true
2022-03-18 11:55:13 +00:00
colorMoved = default
[merge]
conflictstyle = diff3
2012-09-18 12:09:25 +00:00
[mergetool]
2012-09-18 12:09:25 +00:00
prompt = false
keepBackup = false
2015-02-21 13:24:00 +00:00
[push]
2024-07-11 10:09:38 +00:00
default = current
2016-06-15 19:30:24 +00:00
2020-07-08 17:27:44 +00:00
[pull]
rebase = false
2016-06-15 19:30:24 +00:00
[interactive]
2022-03-18 11:55:13 +00:00
diffFilter = delta --color-only
[credential]
helper = store
2022-03-18 11:55:13 +00:00
[delta]
blame-code-style = syntax
2024-07-11 10:09:38 +00:00
blame-format = "{author:>18} ({commit:>8}) {timestamp:<13} "
commit-decoration-style = normal box
dark = true
file-added-label = [+]
file-copied-label = [==]
file-modified-label = [*]
file-removed-label = [-]
file-renamed-label = [->]
2022-03-18 11:55:13 +00:00
hunk-header-style = omit
hyperlinks = false
2024-07-11 10:09:38 +00:00
inline-hint-style = syntax
line-numbers = true
line-numbers-left-format = " {nm:>3} │"
line-numbers-right-format = " {np:>3} │"
merge-conflict-begin-symbol =
merge-conflict-end-symbol =
merge-conflict-ours-diff-header-decoration-style = ''
merge-conflict-theirs-diff-header-decoration-style = ''
minus-non-emph-style = syntax auto
2022-03-18 11:55:13 +00:00
navigate = true
2024-07-11 10:09:38 +00:00
plus-non-emph-style = syntax auto
2022-03-18 11:55:13 +00:00
side-by-side = true
2024-08-28 15:19:56 +00:00
syntax-theme = gruvbox-material
2022-03-18 11:55:13 +00:00
width = "-4"
2024-04-10 09:44:43 +00:00
[init]
defaultBranch = main