Adham El-Deeb
Adham El-Deeb

Reputation: 335

VIM solarized colorscheme on ubuntu

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 >> enter image description here

this is my .vimrc file https://github.com/adham90/vim/blob/master/vimrc

what can i do to fix it?!

Upvotes: 1

Views: 1558

Answers (2)

lynn
lynn

Reputation: 10794

Also try adding TERM='xterm-256color' to your bashrc.

The vim wiki has a guide on installing 256-color schemes.

Upvotes: 1

Daniel Bank
Daniel Bank

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

Related Questions