Change to selenized dark

This commit is contained in:
Maximilian Friedersdorff 2024-11-15 13:00:14 +00:00
parent b93a8e7a31
commit c63f0b318d
5 changed files with 53 additions and 85 deletions

View file

@ -1,9 +1,13 @@
return {
{ "shaunsingh/solarized.nvim" },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "solarized",
},
},
"maxmx03/solarized.nvim",
lazy = false,
priority = 1000,
---@type solarized.config
opts = { palette = "selenized" },
config = function(_, opts)
vim.o.termguicolors = true
vim.o.background = "dark"
require("solarized").setup(opts)
vim.cmd.colorscheme("solarized")
end,
}