dotfiles vCurrent version: v1.0.0 1.1.0

This commit is contained in:
Your Name
2026-06-19 19:16:09 +00:00
commit ef481a03cb
7 changed files with 1241 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
; =============================================================================
; ~/.gitconfig — Git configuration
; Managed by dotfiles ( ~/.config/fish/config.fish )
; Manual changes will be overwritten when `dotfiles update` is run.
; To customise, edit this template at:
; ~/.config/fish/dotfiles/gitconfig
; then run `dotfiles update gitconfig`.
; =============================================================================
[user]
; ── IMPORTANT: set your real name and email ──
name = Your Name
email = you@example.com
[init]
defaultBranch = main
[core]
editor = nano
pager = less
autocrlf = input
whitespace = trailing-space,space-before-tab
excludesfile = ~/.gitignore
[color]
ui = auto
[color "branch"]
current = yellow bold
local = green
remote = cyan
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = green
changed = yellow
untracked = red
[push]
default = simple
autoSetupRemote = true
[fetch]
prune = true
[merge]
conflictstyle = zdiff3
[rebase]
autosquash = true
autoStash = true
[diff]
tool = vimdiff
[help]
autocorrect = 10