]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - gitconfig.m4
Add Vim modeline to gitconfig.m4.
[config/dotfiles.git] / gitconfig.m4
1 [user]
2         name = Simon Ruderich
3         email = simon@ruderich.org
4
5 [color]
6         ui = auto
7
8 [core]
9         editor = vim
10         excludesfile = HOME/.gitignore
11
12 [alias]
13         # Shortcuts for often used commands.
14         ci = commit -v
15         di = diff
16         st = status
17         co = checkout
18         br = branch
19         me = merge
20         # Custom commands.
21         glog = log --pretty=oneline --graph --all
22
23 # vim: ft=gitconfig