Switch color scheme to github light

This commit is contained in:
Cheick Diarra 2024-01-02 09:08:32 +01:00 committed by GitHub
parent 2999bcfda2
commit cad834cd19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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