URI:
       config - dotfiles - dark dots
  HTML git clone https://git.drkhsh.at/dotfiles
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       config (2261B)
       ---
            1 #  ██████╗ ██╗████████╗ ██████╗ ██████╗ ███╗   ██╗███████╗██╗ ██████╗
            2 # ██╔════╝ ██║╚══██╔══╝██╔════╝██╔═══██╗████╗  ██║██╔════╝██║██╔════╝
            3 # ██║  ███╗██║   ██║   ██║     ██║   ██║██╔██╗ ██║█████╗  ██║██║  ███╗
            4 # ██║   ██║██║   ██║   ██║     ██║   ██║██║╚██╗██║██╔══╝  ██║██║   ██║
            5 # ╚██████╔╝██║   ██║   ╚██████╗╚██████╔╝██║ ╚████║██║     ██║╚██████╔╝
            6 #  ╚═════╝ ╚═╝   ╚═╝    ╚═════╝ ╚═════╝ ╚═╝  ╚═══╝╚═╝     ╚═╝ ╚═════╝
            7 #                                              drkhsh <me@drkhsh.at>
            8 
            9 [user]
           10         email = me@drkhsh.at
           11         name = drkhsh
           12         signkey = DB66EE24B07C5FD4EFF6A9E299DB0D8C2A51DB2B
           13 
           14 [pull]
           15         rebase = true
           16 [rebase]
           17         autosquash = true
           18 [push]
           19         default = current
           20 [grep]
           21         lineNumber = true
           22 [commit]
           23         verbose = true
           24 [rerere]
           25         enabled = true
           26 
           27 [init]
           28         defaultBranch = master
           29 
           30 [alias]
           31         a = add
           32         c = commit
           33         ca = commit --amend
           34         p = push
           35         s = status -sb
           36         d = diff
           37         ds = diff --staged
           38         co = checkout
           39         cb = checkout -b
           40         f = fetch --all
           41         pu = pull
           42         cp = cherry-pick
           43         b = !git -P branch -a
           44         l = !git log --graph \
           45                 --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' \
           46                 --abbrev-commit
           47         m = merge
           48         r = rebase
           49         branches = !git -P branch -a
           50         remotes = remote -v
           51         stash-all = stash push -u
           52         undo = reset --soft HEAD~1
           53 
           54 [color]
           55         ui = auto
           56         # force color for interactive use
           57         interactive = always
           58         grep = always # fix for grep/less
           59 
           60 # lfs
           61 [filter "lfs"]
           62         smudge = git-lfs smudge -- %f
           63         process = git-lfs filter-process
           64         required = true
           65         clean = git-lfs clean -- %f
           66 
           67 # machine-specific gitconfig
           68 [include]
           69                 path = config.local
           70 
           71 # fix tig background
           72 [tig "color"]
           73         default = white default
           74