Skip to content

Instantly share code, notes, and snippets.

@2bj
Forked from shadowhand/.vimrc
Created March 5, 2012 06:31
Show Gist options
  • Save 2bj/1977019 to your computer and use it in GitHub Desktop.
Save 2bj/1977019 to your computer and use it in GitHub Desktop.
" 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