Added more color themes:

- kanagawa
- github-nvim-theme
- gruvbox-material
- onedark,
- nightfox
- eldritch
- gruvbox
- nightwolf
This commit is contained in:
2025-11-17 21:32:59 +09:00
parent 51cb237ee5
commit fb3312be99
+38 -3
View File
@@ -24,8 +24,43 @@ return {
},
{
"folke/tokyonight.nvim",
config = function ()
vim.cmd("colorscheme tokyonight-night")
config = function()
-- vim.cmd("colorscheme tokyonight-night")
end
}
},
{
"rebelot/kanagawa.nvim"
},
{
'projekt0n/github-nvim-theme', name = 'github-theme',
},
{
"sainnhe/gruvbox-material",
},
{
"navarasu/onedark.nvim",
priority = 1000,
},
{
"EdenEast/nightfox.nvim",
config = function()
require("nightfox").setup({})
end,
},
{
"eldritch-theme/eldritch.nvim",
lazy = false,
priority = 1000,
opts = {},
},
{
"ellisonleao/gruvbox.nvim",
priority = 1000,
config = true,
},
{
"ricardoraposo/nightwolf.nvim",
priority = 1000,
opts = {},
},
}