IMPORTANT NOTICE: To improved UX for new users, merged colorscheme into
wal-colors repository. From now
on, simply installing wal-colors.nvim
plugin will make this colorscheme available.
A colorscheme that makes use of your pywal colors via the wal-colors lua API. Supports treesitter highlights, LSP semantic highlight tokens, rainbow brackets and a variety of other plugins (Issues/PRs welcome if your favourite plugin is not supported!)
Screenshots taken with different pywal themes.
The only important point is that wal-colors.nvim
is installed before this
plugin. See below for how to do this in lazy.nvim
.
Add a mbc-colorscheme.lua
file to your plugin spec directory containing the
following:
return {
"mbrea-c/mbc-colorscheme.nvim",
dependencies = {
{ "mbrea-c/wal-colors.nvim" },
},
config = function()
vim.cmd([[colorscheme mbc]])
end,
priority = 1000,
}