mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
feat: Updates to git config and snacks.nvim
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
[core]
|
[core]
|
||||||
excludesfile = ~/.config/git/gitignore
|
excludesfile = ~/.config/git/gitignore
|
||||||
ignorecasse = false
|
ignorecasse = false
|
||||||
|
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
|
|
||||||
[user]
|
[user]
|
||||||
name = Michael Housh
|
name = Michael Housh
|
||||||
email = michael@mhoush.com
|
email = michael@mhoush.com
|
||||||
@@ -10,21 +12,56 @@
|
|||||||
|
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
|
|
||||||
[tag]
|
[tag]
|
||||||
gpgSign = true
|
gpgSign = true
|
||||||
|
sort = version:refname
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = true
|
ui = true
|
||||||
|
|
||||||
[credential]
|
[credential]
|
||||||
helper = gopass
|
helper = gopass
|
||||||
|
|
||||||
[credential "https://git.housh.dev"]
|
[credential "https://git.housh.dev"]
|
||||||
username = michael
|
username = michael
|
||||||
|
|
||||||
[push]
|
[push]
|
||||||
|
default = simple
|
||||||
autoSetupRemote = true
|
autoSetupRemote = true
|
||||||
|
followTags = true
|
||||||
|
|
||||||
|
[fetch]
|
||||||
|
prune = true
|
||||||
|
#pruneTags = true
|
||||||
|
#all = true
|
||||||
|
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
|
|
||||||
[filter "lfs"]
|
[filter "lfs"]
|
||||||
process = git-lfs filter-process
|
process = git-lfs filter-process
|
||||||
required = true
|
required = true
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
|
|
||||||
|
[column]
|
||||||
|
ui = auto
|
||||||
|
|
||||||
|
[branch]
|
||||||
|
sort = committerdate
|
||||||
|
|
||||||
|
[diff]
|
||||||
|
algorithm = histogram
|
||||||
|
colorMoved = plain
|
||||||
|
mnemonicPrefix = true
|
||||||
|
renames = true
|
||||||
|
|
||||||
|
[rerere]
|
||||||
|
enabled = true
|
||||||
|
autoupdate = true
|
||||||
|
|
||||||
|
[rebase]
|
||||||
|
autoSquash = true
|
||||||
|
autoStash = true
|
||||||
|
updateRefs = true
|
||||||
|
|||||||
@@ -6,6 +6,11 @@ return {
|
|||||||
hidden = true,
|
hidden = true,
|
||||||
ignored = true
|
ignored = true
|
||||||
},
|
},
|
||||||
|
image = {
|
||||||
|
doc = {
|
||||||
|
enabled = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
dashboard = {
|
dashboard = {
|
||||||
row = nil,
|
row = nil,
|
||||||
col = nil,
|
col = nil,
|
||||||
|
|||||||
Reference in New Issue
Block a user