2021-06-01 15:37:55 -04:00
|
|
|
[core]
|
2022-02-20 22:01:53 -05:00
|
|
|
editor = vi
|
2021-06-01 15:49:42 -04:00
|
|
|
quotepath = false
|
2021-06-01 15:37:55 -04:00
|
|
|
pager = delta
|
|
|
|
[alias]
|
2021-06-01 15:49:42 -04:00
|
|
|
st = status
|
|
|
|
ci = commit
|
|
|
|
br = branch
|
|
|
|
co = checkout
|
|
|
|
df = diff
|
|
|
|
lg = log -p
|
|
|
|
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
|
2021-06-01 15:37:55 -04:00
|
|
|
[credential]
|
2021-06-01 15:49:42 -04:00
|
|
|
helper = cache --timeout=3600
|
2021-06-01 15:37:55 -04:00
|
|
|
[push]
|
2021-06-01 15:49:42 -04:00
|
|
|
default = simple
|
2021-06-01 15:37:55 -04:00
|
|
|
[github]
|
|
|
|
user = {{ (index (lastpass "github_token") 0).username | quote }}
|
|
|
|
token = {{ (index (lastpass "github_token") 0).password | quote }}
|
|
|
|
[diff]
|
2021-06-01 15:49:42 -04:00
|
|
|
tool = meld
|
2021-06-01 15:37:55 -04:00
|
|
|
[difftool]
|
2021-06-01 15:49:42 -04:00
|
|
|
prompt = false
|
2021-06-01 15:37:55 -04:00
|
|
|
[color]
|
2021-06-01 15:49:42 -04:00
|
|
|
ui = auto
|
2021-06-01 15:37:55 -04:00
|
|
|
[filter "lfs"]
|
2021-06-01 15:49:42 -04:00
|
|
|
clean = git-lfs clean -- %f
|
|
|
|
smudge = git-lfs smudge -- %f
|
|
|
|
process = git-lfs filter-process
|
|
|
|
required = true
|
2021-06-01 15:37:55 -04:00
|
|
|
[pull]
|
2021-06-01 15:49:42 -04:00
|
|
|
rebase = false
|
2021-06-01 15:37:55 -04:00
|
|
|
[user]
|
2021-06-01 15:49:42 -04:00
|
|
|
name = {{ .gitconfig.work.name }}
|
|
|
|
email = {{ .gitconfig.work.email }}
|
|
|
|
[includeIf "gitdir:~/projects/{{- .gitconfig.home.config }}/"]
|
|
|
|
path = ~/.gitconfig-{{- .gitconfig.home.config }}
|
2021-06-01 15:37:55 -04:00
|
|
|
|
2021-06-01 15:49:42 -04:00
|
|
|
[includeIf "gitdir:~/projects/{{- .gitconfig.work.config }}/"]
|
|
|
|
path = ~/.gitconfig-{{- .gitconfig.work.config }}
|
2021-06-01 15:37:55 -04:00
|
|
|
[init]
|
2021-06-01 15:49:42 -04:00
|
|
|
defaultBranch = main
|
2021-08-23 14:34:06 -04:00
|
|
|
templatedir = /home/kellya/.git-templates
|
2021-06-01 15:37:55 -04:00
|
|
|
[delta]
|
|
|
|
plus-style = "syntax #012800"
|
|
|
|
minus-style = "syntax #340001"
|
|
|
|
syntax-theme = Monokai Extended
|
|
|
|
|
|
|
|
[interactive]
|
|
|
|
diffFilter = delta --color-only
|
2022-02-20 22:01:53 -05:00
|
|
|
[help]
|
|
|
|
autocorrect = 20
|