chore: update git config d5d72b65
Steve · 2025-08-31 21:46 3 file(s) · +95 −92
git/config (deleted) +0 −92
1 -
[user]
2 -
  name = Steve simkins
3 -
  email = stevedsimkins@gmail.com
4 -
	signingkey = ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCg5SovL4D8z2lT8m2FG+94fPWOn0Ia7IxD3Q9dujCMMz0NqzHYdNTOJXe81MzugLDWFsWFds2FZhJxUdJ12+VhCdJRS5K1wTvf1gdkvXUK7hvemLPPNj+Qwmokw+qVw3LOm8MIITvN0q8tploZ+GuOSvwldootPdm/YwQLhzYafYTSh4YeiCuU5TmZy7YzVuaECle1quqaI8MJ/PO2tvJurSW8QSBBBZh9u/95fAHNCe0Yr3Zvq1zhyXkpf6Z+lXOOoxxhFwvsTs7pJqCqNK/1csu1Ci17pNsBnEEMreR+jojyOMRyR8wi4L7VODNlc25QndsivqhKXybGxRRZZY+KMlpQYTip5SF35KCUP6K3F4uImbRnxzbwBgeOYxRwxyucV4RswdXGk8+PpI1ahdyHGccGJT8uRc8d6wbEY7R5AZE814In6KzzDceOw2dErsItdtmWaEVf7nJ30A3wvUE74bPOPFDjd2DTqI4zcQssdDO1d+7kvw/hLRWZgGzuQNogfl5Pk81UJoiFn5DXMBY2LJi7Y+U9Xva7foWVibqhCWQrXD2PNb0BDtVluJGokd7WSAx3nxDou1qOU6Itq49vbcHZfx2b4mNmGkXJTBMO6a7prRHz6bGjjHaftTgj/tsQNgT5YQX0Ew+EP5gYlfs1eCUwnA8OOBQjPvjSVvCXNQ==
5 -
6 -
[core]
7 -
  compression = 9
8 -
  whitespace = error
9 -
  preloadindex = true
10 -
  pager = delta
11 -
12 -
[commit]
13 -
  template = ~/.config/git/template
14 -
	gpgsign = true
15 -
16 -
[advice]
17 -
  addEmptyPathspec = false
18 -
  pushNonFastForward = false
19 -
20 -
[url "git@github.com:stevedylandev/"]
21 -
  insteadOf = "stevedylandev:"
22 -
23 -
[url "git@github.com:"]
24 -
  insteadOf = "gh:"
25 -
26 -
[init]
27 -
  defaultBranch = main
28 -
29 -
[status]
30 -
  branch = true
31 -
  showStash = true
32 -
  showUntrackedFiles = all
33 -
34 -
[diff]
35 -
  context = 3
36 -
  interHunkContext = 10
37 -
38 -
[interactive]
39 -
  diffFilter = delta --color-only --dark --true-color always
40 -
41 -
[delta]
42 -
  navigate = true
43 -
  light = false  
44 -
  side-by-side = true
45 -
46 -
[push]
47 -
  followTags = true
48 -
49 -
[pull]
50 -
  default = current
51 -
  rebase = true
52 -
53 -
[rebase]
54 -
  autoStash = true
55 -
  missingCommitsCheck = warn
56 -
57 -
[log]
58 -
  abbrevCommit = true
59 -
  graphColors = blue,yellow,cyan,megenta,green,red
60 -
61 -
[color "diff"]
62 -
    meta       = black bold
63 -
    frag       = magenta
64 -
    context    = white
65 -
    whitespace = yellow reverse
66 -
    old        = red
67 -
68 -
[color "decorate"]
69 -
  HEAD = red
70 -
  branch = blue
71 -
  tag = yellow
72 -
  remoteBranch = magenta
73 -
74 -
[color "branch"]
75 -
  current = magenta
76 -
  local = default
77 -
  remote = yellow
78 -
  upstream = green
79 -
  plain = blue
80 -
81 -
[branch]
82 -
  sort = -committerdate
83 -
84 -
[tag]
85 -
  sort = -taggerdate
86 -
87 -
88 -
89 -
[gpg]
90 -
	format = ssh
91 -
[gpg "ssh"]
92 -
	program = /Applications/1Password.app/Contents/MacOS/op-ssh-sign
git/gitconfig (added) +95 −0
1 +
[user]
2 +
  name = Steve
3 +
  email = contact@stevedylan.dev
4 +
  signingkey = contact@stevedylan.dev
5 +
6 +
[alias]
7 +
	ac = "!f() { git add . && git commit -m \"$1\"; }; f"
8 +
	wip = "!f() { git add . && git commit -m \"wip\" && git push; }; f"
9 +
10 +
[column]
11 +
  ui = auto
12 +
13 +
[branch]
14 +
  sort = -comitterdate
15 +
16 +
[init]
17 +
  defaultBranch = main
18 +
19 +
[diff]
20 +
  algorithm = histogram
21 +
  colorMoved = plain
22 +
  mnemonicPrefix = true
23 +
  renames = true
24 +
  context = 3
25 +
  interHunkContext = 10
26 +
27 +
[delta]
28 +
  navigate = true
29 +
  light = false  
30 +
  side-by-side = true
31 +
32 +
33 +
[status]
34 +
  branch = true
35 +
  showStash = true
36 +
  showUntrackedFiles = all
37 +
38 +
[interactive]
39 +
  diffFilter = delta --color-only --dark --true-color always
40 +
41 +
42 +
[push]
43 +
  default = simple
44 +
  autoSetupRemote = true
45 +
  followTags = true
46 +
47 +
[pull]
48 +
  rebase = true
49 +
50 +
[rebase]
51 +
  autoStash = true
52 +
  missingCommitsCheck = warn
53 +
54 +
[fetch]
55 +
  prune = true
56 +
  pruneTags = true
57 +
  all = true
58 +
59 +
[help]
60 +
  autocorrect = prompt
61 +
62 +
[commit]
63 +
  gpgsign = true
64 +
  verbose = true
65 +
66 +
[core]
67 +
  excludesfile = ~/.gitignore
68 +
69 +
[tag]
70 +
  gpgsign = true
71 +
72 +
[log]
73 +
  abbrevCommit = true
74 +
  graphColors = blue,yellow,cyan,megenta,green,red
75 +
76 +
[color "diff"]
77 +
    meta       = black bold
78 +
    frag       = magenta
79 +
    context    = white
80 +
    whitespace = yellow reverse
81 +
    old        = red
82 +
83 +
[color "decorate"]
84 +
  HEAD = red
85 +
  branch = blue
86 +
  tag = yellow
87 +
  remoteBranch = magenta
88 +
89 +
[color "branch"]
90 +
  current = magenta
91 +
  local = default
92 +
  remote = yellow
93 +
  upstream = green
94 +
  plain = blue
95 +
git/ignore → git/gitignore +0 −0