commit ec0db41cf02ea02aea86f9d593b51aaed65f750e
parent 6ab51820e6b8bf3c48597f67724c9ffb39e9c375
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Sun, 2 Mar 2014 19:38:48 +0100
Added 'commit all' and relative numbering as default
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/.vimrc b/.vimrc
@@ -87,6 +87,7 @@ set laststatus=2 " always show the statusline
set list " enable rendering of invisible characters
set listchars=tab:▸\ ,eol:¬ " Use symbols for tab and end-of-line
set number " set linenumbering ON as default
+set relativenumber " set relative linenumbering ON as default
set pastetoggle=<F2> " toggle paste mode
set ruler " Enable bottom ruler
set scrolloff=3 " show context above-below cursorline
diff --git a/.zshrc b/.zshrc
@@ -40,6 +40,7 @@ alias svim='sudoedit'
alias gs='git status'
alias ga='git add'
alias gc='git commit'
+alias gca='git commit -a'
alias gp='git push'
alias gpu='git pull'
alias gcgp='git commit && git push'