You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"miikanissi/modus-themes.nvim",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("modus")
-- add anything else here
The text was updated successfully, but these errors were encountered:
I looked into this and the reason this happens is due to the WinBarNC highlight group being different from the WinBar highlight group and Navic doesn't support an active vs inactive background value.
There isn't a way to fix this via the theme except to make both WinBar and WinBarNC use the same background color. At the moment I don't plan on changing this as I think the inactive and active winbars should have a different background.
In order to "fix" this for yourself you can set the background color of WinBarNC as follows:
Thank you so much for taking the time to look into this issue. This theme is one of the reasons I felt comfortable switching from Emacs. Thanks again! 🥞
Thank you so much for taking the time to look into this issue. This theme is one of the reasons I felt comfortable switching from Emacs. Thanks again! 🥞
You're welcome. I'm glad you are enjoying it and thank you for all of your contributions again as well!
Description
Hi,
I get this ugly background in SmiteshP/nvim-navic.
Neovim version
Terminal and multiplexer
neovide 0.13.3
Modus themes version
a702bfb
Steps to reproduce
Repro
The text was updated successfully, but these errors were encountered: