molokai icon indicating copy to clipboard operation
molokai copied to clipboard

vim in terminal background is too dark

Open schmty opened this issue 10 years ago • 6 comments

The background in terminal vim is completely black and not a light grey.

schmty avatar May 08 '14 05:05 schmty

use either

let g:rehash256 = 1

or

let g:molokai_original = 1

shime avatar Jan 23 '15 10:01 shime

Do these options work for terminal? I tried and saw no effect. It did work for gui version though.

markx avatar Oct 22 '15 18:10 markx

Look like this doesn't work in the terminal. Looking forward to when it is possible in the terminal.

mapringg avatar Dec 28 '15 15:12 mapringg

this is my resolution: colorscheme molokai let g:molokai_original = 1 set background=dark "required solve molokai background color too dark and not a light grey

jackiesun8 avatar Mar 05 '16 10:03 jackiesun8

Doing what @jackiesun8 suggested fixed it for me. However, it makes plain text and commands black instead of white. Does it happen to anyone else? I removed all other extensions to make sure that they weren't affecting.

victorhcm avatar Nov 13 '16 02:11 victorhcm

Nevermind, I managed how to fix it. I also needed to set let g:rehash256 = 1 to avoid Normal text being black.

colorscheme molokai
let g:molokai_original = 1
let g:rehash256 = 1
set background=dark

Some screenshots showing the differences:

victorhcm avatar Nov 13 '16 03:11 victorhcm