noahfrederick / vim-hemisu

A Vim color scheme with dark and light variants
https://noahfrederick.com/vim-color-scheme-hemisu/
279 stars 30 forks source link

Colors are off in iterm2 #6

Closed npearson72 closed 11 years ago

npearson72 commented 11 years ago

Hi,

Sorry to keep bothering you, but my colors are off in iterm2. I'm using the peppermint iterm port as my colors for iterm2... but vim with Hemisu is off.

Here are screenshots of iterm2 vim and mvim. Mvim is correct as you see. screen shot 2013-09-04 at 9 32 11 pm screen shot 2013-09-04 at 9 32 34 pm

npearson72 commented 11 years ago

As a side note, vim finds the colorscheme when I'm in a vim session, and when I set it there, it works. Just not from my .vimrc file

npearson72 commented 11 years ago

Fixed it. Turns out the order of my .vimrc commands was off. I need to do this:

8 let &t_Co=256 9 set background=dark 10 set guifont=Monaco:h14 11 colorscheme hemisu

Notice how colorscheme is at the bottom of all this?

Thanks!

noahfrederick commented 11 years ago

The relevant part is that you set the 'background' option before the :colorscheme command. See #4 for details.