From 81534647f7ecc4a2aa6fde84d309d5f780b20f90 Mon Sep 17 00:00:00 2001 From: Diachk Date: Wed, 3 Jan 2024 23:14:42 +0100 Subject: [PATCH] update color scheme --- lua/plugins/color-scheme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/color-scheme.lua b/lua/plugins/color-scheme.lua index 82f58ee..98cadf5 100644 --- a/lua/plugins/color-scheme.lua +++ b/lua/plugins/color-scheme.lua @@ -3,6 +3,6 @@ return { lazy = false, -- make sure we load this during startup if it is your main colorscheme priority = 1000, -- make sure to load this before all the other start plugins config = function() - vim.cmd("colorscheme github_light") + vim.cmd("colorscheme github_light_default") end, }