remove notify bg warning

This commit is contained in:
Diachk 2024-01-14 10:35:15 +01:00
parent 4128aac92b
commit 73d82d9e30

View file

@ -1,3 +1,4 @@
local notify = "notify"
return { return {
"projekt0n/github-nvim-theme", "projekt0n/github-nvim-theme",
lazy = false, -- make sure we load this during startup if it is your main colorscheme lazy = false, -- make sure we load this during startup if it is your main colorscheme
@ -6,9 +7,12 @@ return {
require("github-theme").setup({ require("github-theme").setup({
options = { options = {
transparent = true, transparent = true,
dim_inactive = true, dim_inactive = false,
}, },
}) })
vim.cmd("colorscheme github_light") vim.cmd("colorscheme github_light")
require(notify).setup({
background_colour = "#fefefe",
})
end, end,
} }