How to disable highlighting for a specific plugin? #284
-
Hi, I like this theme and use it all the time. I have a question on plugin support, is it possible to disable highlighting only for specified plugins (e.g. nvim-notify)? |
Beta Was this translation helpful? Give feedback.
Answered by
ful1e5
Jul 21, 2023
Replies: 1 comment 1 reply
-
@satoshiyamamoto To disable the plugin highlight, set the module name to Once you do that, you'll need to manually recompile the theme using require('github-theme').setup({
options = {
modules = {
notify = false,
},
-- ...
},
})
vim.cmd('colorscheme github_dark') |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
satoshiyamamoto
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@satoshiyamamoto To disable the plugin highlight, set the module name to
false
in theoptions
sub-table.Once you do that, you'll need to manually recompile the theme using
:GithubThemeCompile
because the auto re-compiling process is currently not working correctly.