이도현
이도현

Reputation: 11

vim colorscheme shows wrong color

I want to change my colorscheme to this: earthsong on http://daylerees.github.io/

but it changes color something srange. like this (up: molokai, down: earthsong)

I try :colorscheme earthsong in vim, it gives same result.

I using vim on mac (latest version)

I got .vim code from https://github.com/daylerees/colour-schemes/blob/master/vim/colors/earthsong.vim

Can I get some help?

Upvotes: 1

Views: 3147

Answers (1)

romainl
romainl

Reputation: 196546

  1. The very first place to look for help with an open source project is its issue tracker if it exists.

  2. That colorscheme only uses your terminal palette. This means that you must adjust it to the colors used in the colorscheme which don't seem to be listed anywhere else than in the colorscheme itself.

If you use Vim 8 and an up-to-date iTerm you could tell Vim to use your GUI colors in the terminal with:

set termguicolors

Upvotes: 6

Related Questions