From cad834cd19a74942ce0c1162d8eb3b564bced7bf Mon Sep 17 00:00:00 2001 From: Cheick Diarra Date: Tue, 2 Jan 2024 09:08:32 +0100 Subject: [PATCH] Switch color scheme to github light --- lua/plugins/color-scheme.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lua/plugins/color-scheme.lua b/lua/plugins/color-scheme.lua index d199c0e..82f58ee 100644 --- a/lua/plugins/color-scheme.lua +++ b/lua/plugins/color-scheme.lua @@ -1,5 +1,8 @@ return { - "folke/tokyonight.nvim", - lazy = true, - opts = { style = "night", light_style = "day" } + "projekt0n/github-nvim-theme", + 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") + end, }