dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

config (1068B)


      1 [alias]
      2   lol = log --pretty=format:'%C(yellow)%h%C(reset) %C(green)%ci%C(reset) %C(blue)%an%C(reset) %C(yellow)%d%C(reset) %s'
      3   logstats = log --pretty=format:'%C(yellow)%h%C(reset) %C(green)%cr%C(reset) %C(blue)%an%C(reset): %s' --stat
      4   vimdiff = difftool
      5 [color]
      6   ui = auto
      7 [core]
      8   excludesfile = ~/.config/git/gitignore_global
      9   editor = vim
     10 [credential]
     11   helper = store
     12 [diff]
     13   algorithm = histogram
     14   mnemonicprefix = true
     15   tool = vimdiff
     16 [filter "lfs"]
     17   required = true
     18   clean = git-lfs clean -- %f
     19   smudge = git-lfs smudge -- %f
     20   process = git-lfs filter-process
     21 [grep]
     22   lineNumber = true
     23 [merge]
     24   conflictStyle = zdiff3
     25   stat = true
     26 [pull]
     27   rebase = true
     28 [push]
     29   default = simple
     30 [rebase]
     31   autosquash = true
     32 [rerere]
     33   enabled = true
     34 [sendemail]
     35   smtpserver = smtp.gmail.com
     36   smtpuser = chris@bracken.jp
     37   smtpencryption = tls
     38   smtpserverport = 587
     39   annotate = true
     40 [user]
     41   name = Chris Bracken
     42   email = chris@bracken.jp
     43 
     44 # If a host-local config file is present, merge it into our config.
     45 [include]
     46   path = ~/.config/git/local_config