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, }