42 lines
779 B
Lua
42 lines
779 B
Lua
return {
|
|
{
|
|
"olimorris/onedarkpro.nvim",
|
|
priority = 1000, -- Ensure it loads first
|
|
enable = false,
|
|
opts = {
|
|
colors = {
|
|
red = "#abb2bf", -- Make red white because identifiers are red.
|
|
},
|
|
},
|
|
},
|
|
{
|
|
'AlexvZyl/nordic.nvim',
|
|
lazy = false,
|
|
enable = false,
|
|
priority = 1000,
|
|
config = function()
|
|
-- require('nordic').load()
|
|
end
|
|
},
|
|
{
|
|
"rmehri01/onenord.nvim",
|
|
enable = false,
|
|
priority = 1000, -- Ensure it loads first
|
|
},
|
|
{
|
|
'marko-cerovac/material.nvim',
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
vim.g.material_style = "darker"
|
|
end
|
|
},
|
|
-- Configure LazyVim to load gruvbox
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "material",
|
|
},
|
|
},
|
|
}
|