nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

gitconfig (803B)


      1 [includeIf "gitdir:~/src/"]
      2     path = ~/misc/git/gitconfig-gpgsign
      3 
      4 [includeIf "gitdir:~/src/sr.ht/"]
      5     path = ~/misc/git/gitconfig-sendmail
      6 
      7 [user]
      8     name = mtmn
      9     email = miro@haravara.org
     10 
     11 [color]
     12     ui = auto
     13 
     14 [push]
     15     default = current
     16 
     17 [merge]
     18     tool = vimdiff
     19     conflictstyle = diff3
     20 
     21 [rebase]
     22     autosquash = true
     23 
     24 [alias]
     25     why-ignore = check-ignore -v
     26     wip = for-each-ref --sort='authordate:iso8601' --format=' %(color:green)%(authordate:relative)%09%(color:white)%(refname:short)' refs/heads
     27     gol = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
     28 
     29 [pull]
     30     rebase = true
     31 
     32 [merge]
     33     conflictstyle = diff3
     34 
     35 [rerere]
     36     enabled = true
     37 
     38 [core]
     39     excludesFile = ~/.config/git/ignore