Reputation: 335
I'm using vim on ubuntu 14.10 and i installed solarized colorscheme to my vim but the color not looks like what it should to be, this is what i get >>
this is my .vimrc file https://github.com/adham90/vim/blob/master/vimrc
what can i do to fix it?!
Upvotes: 1
Views: 1558
Reputation: 10794
Also try adding TERM='xterm-256color'
to your bashrc.
The vim wiki has a guide on installing 256-color schemes.
Upvotes: 1
Reputation: 3899
Try updating your .vimrc
file with the following:
" ==== colorscheme ====
syntax enable
let g:solarized_termcolors=256
set background=dark
colorscheme solarized
" =====================
Upvotes: 0