Skip to content

Instantly share code, notes, and snippets.

@cullophid
Created February 12, 2014 13:59
Show Gist options
  • Save cullophid/8956029 to your computer and use it in GitHub Desktop.
Save cullophid/8956029 to your computer and use it in GitHub Desktop.
vimrc
"--- VIM CONFIG ---"
" Andreas Moeller
"----------------------"
"--- basic ---"
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set number
syntax enable
"----- theme -----"
set background=dark
colorscheme solarized
"--- Key maps ---"
"tabs
nnoremap tr :tabnext<CR>
nnoremap tl :tabprev<CR>
nnoremap te :tabedit<Space>
nnoremap tq :tabclose<CR>
nnoremap tn :tabnew<Space>
"--- End of Config ---"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment