this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup Git configuration

+31 -9
+21
git/.config/git/attributes
··· 1 + 1 2 # Elixir 2 3 *.ex diff=elixir 3 4 *.exs diff=elixir ··· 5 6 # Erlang 6 7 *.erl diff=erlang 7 8 *.hrl diff=erlang 9 + 10 + # TeX 11 + *.tex diff=tex 12 + 13 + # Rust 14 + *.rust diff=rust 15 + 16 + # CSS 17 + *.css diff=css 18 + 19 + # Ruby 20 + *.rb diff=ruby 21 + 22 + # Python 23 + *.py diff=python 24 + 25 + # Markdown 26 + *.md diff=markdown 27 + *.mdown diff=markdown 28 + *.markdown diff=markdown
+9 -9
git/.config/git/config
··· 11 11 ci = commit 12 12 co = checkout 13 13 cob = checkout -b 14 - lg = log --color --graph --abbrev-commit --pretty=format:'%C(yellow)%h%C(auto)%d %s <%C(green)%aN%C(reset)> (%C(blue)%ar%C(reset))' 15 - pr = pull-request 14 + lg = log --color --graph --abbrev-commit --pretty=simple-oneline 16 15 rci = commit --amend --reuse-message HEAD 17 16 squash = rebase -i @{u} 18 17 st = status -sb 19 18 todo = grep -Ee '\\bTODO:?\\b' 20 19 fixme = grep -Ee '\\bFIX(ME)?:?\\b' 21 20 com = checkout master 22 - ag = grep 23 - rg = grep 24 21 skip = update-index --skip-worktree 25 22 unskip = update-index --no-skip-worktree 26 23 publish = push -u hauleth 27 24 cleanup = "!git branch --format=\"%(if:notequals=*)%(HEAD)%(then)%(if:notequals=${1:-master})%(refname:lstrip=2)%(then)%(refname:lstrip=2)%(end)%(end)\" --merged master | xargs -rpxL1 git branch -d" 25 + 26 + [pretty] 27 + simple-oneline = "%C(yellow)%h%C(auto)%d %s <%C(green)%aN%C(reset)> (%C(blue)%ar%C(reset))" 28 28 29 29 [mergetool] 30 30 keepBackup = false ··· 74 74 algorithm = histogram 75 75 mnemonicPrefix = true 76 76 77 - [diff "elixir"] 78 - xfuncname = "^[ \t]*((def(macro|module|impl|guard|protocol)?p?|test)[ \t].*)$" 77 + [diff "markdown"] 78 + xfuncname = "^(#+\\s+.*)$" 79 79 80 80 [color] 81 81 ui = true 82 82 83 83 [color.diff] 84 - old = blue 84 + old = magenta 85 85 new = yellow 86 86 87 87 [color.diff-highlight] 88 - oldNormal = "blue" 89 - oldHighlight = "blue ul" 88 + oldNormal = "magenta" 89 + oldHighlight = "magenta ul" 90 90 newNormal = "yellow" 91 91 newHighlight = "yellow ul" 92 92
+1
git/.config/git/ignore
··· 69 69 # }}} 70 70 .elixir_ls 71 71 /.direnv 72 + .vagrant/