From 73d82d9e30a6c0198b6dc672602efcdd37978694 Mon Sep 17 00:00:00 2001 From: Diachk Date: Sun, 14 Jan 2024 10:35:15 +0100 Subject: [PATCH] remove notify bg warning --- lua/plugins/color-scheme.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/plugins/color-scheme.lua b/lua/plugins/color-scheme.lua index aa6bf47..908495d 100644 --- a/lua/plugins/color-scheme.lua +++ b/lua/plugins/color-scheme.lua @@ -1,3 +1,4 @@ +local notify = "notify" return { "projekt0n/github-nvim-theme", lazy = false, -- make sure we load this during startup if it is your main colorscheme @@ -6,9 +7,12 @@ return { require("github-theme").setup({ options = { transparent = true, - dim_inactive = true, + dim_inactive = false, }, }) vim.cmd("colorscheme github_light") + require(notify).setup({ + background_colour = "#fefefe", + }) end, }