--- a/vim/.vimrc Thu Aug 26 10:37:27 2010 -0400
+++ b/vim/.vimrc Tue Aug 31 10:30:54 2010 -0400
@@ -75,10 +75,10 @@
let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$']
" Use the damn hjkl keys
-map <up> <nop>
-map <down> <nop>
-map <left> <nop>
-map <right> <nop>
+nnoremap <up> <nop>
+nnoremap <down> <nop>
+nnoremap <left> <nop>
+nnoremap <right> <nop>
" And make them fucking work, too.
nnoremap j gj
@@ -208,3 +208,9 @@
" Easy filetype switching
nnoremap _dt :set ft=htmldjango<CR>
nnoremap _jt :set ft=htmljinja<CR>
+
+" Learn to backspace the right way
+inoremap <BS> <nop>
+
+" VCS Stuff
+let VCSCommandMapPrefix = "<leader>h"