Closed matu3ba closed 8 months ago
vim.o.background = light get overwritten to dark unless bg is set during call by colorbuddy, which would be nice to document.
vim.o.background = light
bg
--require('colorbuddy').colorscheme('onebuddy', 'light') would be the correct usage.
--require('colorbuddy').colorscheme('onebuddy', 'light')
Many plugins also use a vim file doing essentially nothing, which doesnt play nice with the lua startup profiler.
Is there a specific reason not to recommend require('colorbuddy').colorscheme('onebuddy', bg) to plugin developers in the README?
require('colorbuddy').colorscheme('onebuddy', bg)
vim.o.background = light
get overwritten to dark unlessbg
is set during call by colorbuddy, which would be nice to document.--require('colorbuddy').colorscheme('onebuddy', 'light')
would be the correct usage.Many plugins also use a vim file doing essentially nothing, which doesnt play nice with the lua startup profiler.
Is there a specific reason not to recommend
require('colorbuddy').colorscheme('onebuddy', bg)
to plugin developers in the README?