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