We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am not able load the the theme in lazy plugin manager, it was working great in packer it doesn't works in lazy here are my configs :
function ColorMyPencils(color) color = "PaperColor" vim.cmd.colorscheme(color) vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) end return { { "NLKNguyen/papercolor-theme", priority = 1000, config = function() require("papercolor").setup({ }) ColorMyPencils() end }, }
It gives me an error like papercolor is not found
Any kind of help will be appreciated. Thanks in advance 🙂
The text was updated successfully, but these errors were encountered:
I was able to get mine to not have the error with the following:
{ 'NLKNguyen/papercolor-theme', priority = 1000, config = function() -- Blank to address startup error end, init = function() vim.opt.termguicolors = true vim.cmd.colorscheme 'PaperColor' end, },
Sorry, something went wrong.
No branches or pull requests
I am not able load the the theme in lazy plugin manager,
it was working great in packer it doesn't works in lazy
here are my configs :
It gives me an error like papercolor is not found
Any kind of help will be appreciated.
Thanks in advance 🙂
The text was updated successfully, but these errors were encountered: