Replies: 1 comment
-
this should work local papercolor = {
'NLKNguyen/papercolor-theme',
lazy = false,
priority = 1000,
config = function()
vim.opt.termguicolors = true
vim.cmd.colorscheme('PaperColor')
vim.o.background = 'light'
end
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I try to migrate to lua config and with the following configuration lazy.nvim does not load paper color colortheme
If I move
vim.cmd.colorscheme('PaperColor')
andvim.o.background = 'light'
the to the very end of the config, the colorscheme works.Beta Was this translation helpful? Give feedback.
All reactions