Highlight color of vim illuminate is same as the text color
PhosCity opened this issue · 2 comments
PhosCity commented
https://github.com/RRethy/vim-illuminate
The highlight color of vim illuminate is same color as the text causing it to be unreadable. Is there something that can be done to solve this?
mbpowers commented
Not sure if this is the proper way, but I go into ~/.local/share/nvim/site/pack/packer/start/pywal/lua/pywal/config.lua (might be somewhere else depending on package manager/lazy loading) and change/add values in the table.
For example I have,
M.highlights_base = function (colors)
return {
-- other highlights ...
illuminatedWord = { guifg = colors.color6 },
illuminatedCurWord = { guifg = colors.color6 },
-- more highlights ...
}
endcolors.color0 through colors.color15 should be your pywal colors.
PhosCity commented
Awesome, thanks! That does solve my problem.