vim-code-dark
vim-code-dark copied to clipboard
[ADD TO README] Plugin rendering parts of the buffer opaque when using vim-transparent
Areas of the buffer where there is no text happen to not be transparent and this is rather unsettling as i quite like this theme. i hope this issue gets resolved.
can confirm that the problem is not with the terminal. tried it on Alacritty and got the same issue.
Hello, could you try the following from #44?
highlight Normal ctermbg=NONE
highlight nonText ctermbg=NONE
highlight EndOfBuffer ctermbg=NONE
that didnt seem to work sadly
I have to admit I have no idea why the normal background is transparent, but below the text, it is not. In the color scheme, they should both have the same background value.
You could also try the following. Make sure to put it after you set the colorscheme to codedark.
colorscheme codedark
highlight Normal guibg=NONE ctermbg=NONE
highlight nonText guibg=NONE ctermbg=NONE
highlight EndOfBuffer guibg=NONE ctermbg=NONE
If that does not work, I have no idea how to help. Maybe someone else can help.
thank you that worked :)
Wonderful! I will add it to the readme. :) Thanks for the report!
@tomasiser I think this can be closed since #102.
Thank you!