rebelot / kanagawa.nvim

NeoVim dark colorscheme inspired by the colors of the famous painting by Katsushika Hokusai.
MIT License
4.18k stars 178 forks source link

Show End of Buffer signs #214

Closed primeapple closed 7 months ago

primeapple commented 7 months ago

Hi, I have a tiny issue.

I want to show the ~ tilde signs that represent the end of a buffer. I thought I could add the following to my overrides:

                        EndOfBuffer = { fg = theme.ui.fg, bg = theme.ui.bg_gutter },
                        NonText = { fg = theme.ui.fg, bg = theme.ui.bg_gutter },

But sadly that doesn't do anything. Does anyone now what to set? Catpucccin did it in this commit https://github.com/catppuccin/nvim/commit/ca99c89638e63fe123a6c31190b546887e82d0ca

rebelot commented 7 months ago

I can't reproduce your issue, the above overrides should work as expected. 1) did you enable compilation? If so, remember to use the :KanagawaCompile command 2) check if other plugins (possibly colorschemes?) are overriding your config

primeapple commented 7 months ago

Ahh, I found it, I was setting eob to an empty string in another plugin.

Sorry for the noise and thanks for your work!