adding a gitconfig, has some CVS/SVN-isms and nice defaults

This commit is contained in:
David Alexander Majnemer 2008-12-20 00:02:28 -06:00
parent fafd282343
commit 1f6c6116e3
3 changed files with 13 additions and 2 deletions

11
gitconfig Normal file
View file

@ -0,0 +1,11 @@
[alias]
co = checkout
ci = commit
st = status
di = diff --color-words
[color]
diff = auto
status = auto
branch = auto
[core]
pager =

View file

@ -54,6 +54,8 @@ my %links = (
xmobarrc => '.xmobarrc', xmobarrc => '.xmobarrc',
'xmonad.hs' => '.xmonad/xmonad.hs', 'xmonad.hs' => '.xmonad/xmonad.hs',
'gitconfig' => '.gitconfig',
); );
for my $file (keys %links) { for my $file (keys %links) {

2
zshrc
View file

@ -112,8 +112,6 @@ export LESS=' -R'
( which vim &> /dev/null ) && export EDITOR='vim' ( which vim &> /dev/null ) && export EDITOR='vim'
export GIT_PAGER=''
# aliases # aliases
alias cd..='cd ..' alias cd..='cd ..'