-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
124 lines (109 loc) · 3.85 KB
/
gitconfig
File metadata and controls
124 lines (109 loc) · 3.85 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[color]
ui = auto
[color "branch"]
current = 201 bold # neon magenta - current branch
local = 51 # electric cyan - local branches
remote = 213 # bright magenta - remote branches
[color "diff"]
meta = 201 bold # neon magenta - meta information
frag = 213 bold # bright magenta - hunk header
old = 197 # red - deletions
new = 149 # green - additions
whitespace = 197 reverse
[color "status"]
added = 149 # green - added files
changed = 213 # bright magenta - changed files
untracked = 51 # electric cyan - untracked files
deleted = 197 # red - deleted files
branch = 220 bold # yellow - branch info
nobranch = 197 bold # red - detached HEAD warning
unmerged = 197 bold # red - unmerged files
[color "interactive"]
prompt = 201 bold # neon magenta - prompts
header = 213 # bright magenta - headers
help = 51 # electric cyan - help text
error = 197 # red - errors
[color "grep"]
filename = 201 bold # neon magenta - filenames
linenumber = 213 # bright magenta - line numbers
match = 201 bold # neon magenta - matching text
separator = 51 # electric cyan - separators
[color "reflog"]
head = 201 bold # neon magenta - HEAD@{n}
branch = 213 # bright magenta - branch info
remoteBranch = 51 # electric cyan - remote branches
tag = 220 # yellow - tags
stash = 149 # green - stash entries
other = 197 # red - other refs
[user]
name = Stefanie Jane
email = stef@hyperbliss.tech
[credential]
helper = store
[http]
cookiefile = ~/.gitcookies
[core]
autocrlf = input
pager = delta
[init]
defaultBranch = main
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
dark = true
syntax-theme = Dracula
line-numbers = true
side-by-side = false
file-style = "#c792ea bold" # purple for file names
file-decoration-style = "#c792ea box"
hunk-header-style = "#ff79c6 bold" # pink for hunk headers
hunk-header-decoration-style = "#ff79c6 box"
line-numbers-left-style = "#5a4a78" # muted purple
line-numbers-right-style = "#5a4a78"
line-numbers-minus-style = "#f78c6c" # coral for deletions
line-numbers-plus-style = "#addb67" # green for additions
minus-style = syntax "#3a2a2a" # dark red background
minus-emph-style = syntax "#5a2a2a" # darker red for emphasis
plus-style = syntax "#2a3a2a" # dark green background
plus-emph-style = syntax "#2a5a2a" # darker green for emphasis
[push]
autoSetupRemote = true
default = current
[rebase]
autoSquash = true
autoStash = true
[fetch]
prune = true
[merge]
conflictstyle = zdiff3
[diff]
colorMoved = default
algorithm = histogram
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[log]
# SilkCircuit-inspired log formatting
decorate = full
abbrevCommit = false
[pretty]
# SilkCircuit full format - matches default git log but with colors
# Title: soft green (149) - distinct, calm | Body: muted gray
silkcircuit = %C(201 bold)commit %H%Creset%C(220 bold)%d%Creset%n%C(white)Author: %C(213)%an <%ae>%Creset%n%C(white)Date: %C(51)%ad%Creset%n%n%w(0,4,4)%C(149)%s%Creset%n%n%C(252)%b%Creset
[format]
# Use SilkCircuit format by default
pretty = silkcircuit
[alias]
# Beautiful one-line log with graph
lg = log --graph --pretty=format:'%C(201 bold)%h%Creset%C(220 bold)%d%Creset %C(149)%s%Creset %C(243)(%cr)%Creset %C(213)<%an>%Creset'
# Full log with SilkCircuit colors (like regular git log but styled)
l = log --pretty=silkcircuit
# Full log with graph
lgf = log --graph --pretty=silkcircuit
# Show commits from all branches with full format
lga = log --graph --all --pretty=silkcircuit
# Compact log for quick overview
lgs = log --graph --pretty=format:'%C(201)%h%Creset %C(149)%s%Creset %C(243)(%cr)%Creset' --abbrev-commit