I'm currently running nvim 0.11.3 and trying to setup the plugin.
The issue is that even though I specify use_wallust = true it still tries to find the pywal file.
Error detected while processing /home/user/.config/nvim/init.lua:
Colorscheme file '/home/user/.cache/wal/colors-wal.vim' could not be found, falling back to the builtin colorscheme.
My config is:
{
'RedsXDD/neopywal.nvim',
name = 'neopywal',
lazy = false,
priority = 1000,
config = function()
require('neopywal').setup {
use_wallust = true,
}
vim.cmd.colorscheme 'neopywal'
end,
},
I'm currently running nvim 0.11.3 and trying to setup the plugin.
The issue is that even though I specify
use_wallust = trueit still tries to find the pywal file.My config is: