Created
March 2, 2012 23:15
-
-
Save shadowhand/1962204 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" can haz highlights | |
syntax enable | |
" make love to my eyes | |
colorscheme Tomorrow-Night | |
" always show tabs | |
set showtabline=2 | |
" enable recursive file search | |
set path=./** | |
" show tabs and return whitespace | |
set list listchars=tab:▸\ ,eol:¬,trail:· | |
" use 4 spaces for tabs | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
" stop using arrow keys! | |
inoremap <Up> <NOP> | |
inoremap <Down> <NOP> | |
inoremap <Left> <NOP> | |
inoremap <Right> <NOP> | |
noremap <Up> <NOP> | |
noremap <Down> <NOP> | |
noremap <Left> <NOP> | |
noremap <Right> <NOP> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment