Created
May 23, 2012 17:54
-
-
Save sycobuny/2776672 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
""""""""""""""""""""" | |
" SYNTAX HIGHLIGHTING | |
""""""""""""""""""""" | |
set t_Co=256 | |
syntax enable | |
highlight comment ctermbg=blue | |
highlight comment ctermfg=gray | |
highlight constant ctermfg=red | |
highlight type ctermfg=green | |
highlight preproc ctermfg=blue | |
highlight special ctermfg=red | |
"highlight type ctermfg=yellow | |
"highlight type ctermbg=gray | |
""""""""""""""""""""""" | |
" LINE NUMBERS/POSITION | |
""""""""""""""""""""""" | |
set ruler | |
"""""" | |
" TABS | |
"""""" | |
set smartindent | |
set tabstop=4 | |
set expandtab | |
set shiftwidth=4 | |
set nopaste | |
"""""""""""""""""""""""" | |
" SKIP BACKUP/SWAP FILES | |
"""""""""""""""""""""""" | |
set nowb | |
set noswapfile | |
"""""""""""""""""""" | |
" PRETTY STATUS LINE | |
"""""""""""""""""""" | |
set ls=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment