Created
April 23, 2013 10:10
-
-
Save larsvegas/5442376 to your computer and use it in GitHub Desktop.
.vimrc-solarized-settings
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
"" Use a Colorscheme | |
Bundle 'altercation/vim-colors-solarized' | |
syntax enable " Turn on syntax highlighting. | |
"set background=light | |
set background=dark | |
set t_Co=256 " 256 colors | |
"" colorscheme solarized settings | |
"" optionname defaults | |
let g:solarized_termcolors=256 " 16 | 256 | |
let g:solarized_termtrans=0 " 0 | 1 | |
let g:solarized_degrade=0 " 0 | 1 | |
let g:solarized_bold=1 " 1 | 0 | |
let g:solarized_underline=1 " 1 | 0 | |
let g:solarized_italic=1 " 1 | 0 | |
let g:solarized_contrast="high" " normal | high or low | |
let g:solarized_visibility="normal" " normal | high or low | |
colorscheme solarized |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi