Created
December 22, 2011 00:11
-
-
Save yasith/1508312 to your computer and use it in GitHub Desktop.
solarized fix for .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
set t_Co=256 | |
set background=dark | |
if !has('gui_running') | |
let g:solarized_termcolors=&t_Co | |
let g:solarized_termtrans=1 | |
endif | |
colorscheme solarized |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot, it fixed my issue.
All my terminal setting is right (xterm-256color, solarized for terminal bla bla bla) but solarized in vim just do not work until adding these lines to .vimrc
is better I think :)