nvimdev / oceanic-material

Oceanic Material Colorscheme on Vim/NeoVim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terminal Text Bg Fg should be different

Xyhlon opened this issue · comments

The default black color (terminal_color[0]) is set to the background color, hence every time black is written on the normal bg it is not visible please change it to something else.
the line causing the trouble
let g:terminal_color_0 = s:terminal.black[0]
Possible fixes are:
let g:terminal_color_0 = s:terminal.white[0]
or setting a different such that white and black don't conflict
let g:terminal_color_0 = '#e5c288'
or plain old black
let g:terminal_color_0 = s:colors.black[0]
let g:terminal_color_0 = "#0C1A1D"
the last color is my favorite

image

merged fix done