-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 Invalid filter, expected "classic", "machine", "octagon", "pro", "ristretto" or "spectrum" #116
Comments
I |
Seems to be related to the lualine config I have: require('lualine').setup {
options = {
theme = 'monokai-pro'
}
} If I remove the options table, no message is printed. |
Im also getting this issue, is there a fix? |
I'm not sure, I moved to a different colorscheme, so it may be that there is only the workaround posted by me 🤷 |
Same here got |
Somehow the I'm using lazy.nvim as package manager and set monokai-pro.nvim to By the way I don't have anything like |
Getting the same error with latest version. |
I fixed it by explicitly forcing the theme to load before local lazyplugins = {
{
-- color scheme
'loctvl842/monokai-pro.nvim',
lazy = false,
priority = 1000,
dependencies = {'nvim-tree/nvim-web-devicons'},
config = function()
require('monokai-pro').setup({
devicons = true,
filter = "pro",
background_clear = {"toggleterm", "telescope", "notify"}
})
vim.cmd([[colorscheme monokai-pro]])
end
}, {
-- status line
'nvim-lualine/lualine.nvim',
dependencies = {'nvim-tree/nvim-web-devicons'},
lazy = false,
config = function()
require('lualine').setup({options = {theme = 'monokai-pro'}})
end
}
}
require('lazy').setup(lazyplugins) |
This is my setup
I get this message after updating this theme to v1.21.0:
This is new and never happened in the past.
I'm on
The text was updated successfully, but these errors were encountered: