Open gorillamoe opened 8 months ago
I git bisect
ed it to v1.19.2
.
v1.19.1
works like a charm and v1.19.2
and upwards prints the log message.
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?
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 :shrug:
Same here got Invalid filter
Somehow the filter
here is nil
.
I'm using lazy.nvim as package manager and set monokai-pro.nvim to lazy
fixes this issue.
By the way I don't have anything like require("monokai-pro").setup({ ... } )
in my config.
Getting the same error with latest version.
I fixed it by explicitly forcing the theme to load before lualine
:
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