Created
February 12, 2014 13:59
-
-
Save cullophid/8956029 to your computer and use it in GitHub Desktop.
vimrc
This file contains 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
"--- 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