mhartington / oceanic-next

Oceanic Next theme for neovim
Other
1.13k stars 141 forks source link

background color no longer works. #94

Closed tofulm closed 3 years ago

tofulm commented 3 years ago

Problems summary

since #92 , the background color no longer works.

Environment Information

Provide a minimal vim rc with less than 50 lines (Required!)

call plug#begin('~/.local/share/nvim/plugged')
Plug 'mhartington/oceanic-next'
call plug#end()
syntax enable
if (has("termguicolors"))
    set termguicolors
endif
colorscheme OceanicNext

Screen shot (if possible)

2020-11-08-100446_1920x1080_scrot

hillaryychan commented 3 years ago

Had the same issue as well.

It looks like it's because the background value for Normal is set to s:none instead of s:base00 in the latest PR (See OceanicNext.vim).

tofulm commented 3 years ago

thanks