Minimal init.lua:
setting vim.o.background to light has no effect
--vim.o.background = 'light'; --inserting here does not have an effect
require('packer').startup(
function()
use { 'wbthomason/packer.nvim' }
use { 'glepnir/lspsaga.nvim', requires = { 'neovim/nvim-lspconfig' } }
use { 'Th3Whit3Wolf/onebuddy', requires = { 'tjdevries/colorbuddy.nvim' } }
end
)
require('colorbuddy').colorscheme('onebuddy')
vim.o.background = 'light'; --sets vim.o.background, but I dont get the light colorscheme
in commandline: :lua print(vim.o.background) returns light, but the light colorscheme is not loaded.
It gets reset somewhere, when I set it in the first line. Ideas? Is this a neovim regression?
Minimal init.lua:
setting vim.o.background to light has no effect
in commandline:
:lua print(vim.o.background)returnslight, but the light colorscheme is not loaded.It gets reset somewhere, when I set it in the first line. Ideas? Is this a neovim regression?