mirror of https://github.com/LazyVim/starter
11 lines
186 B
Lua
11 lines
186 B
Lua
|
return {
|
||
|
"maxmx03/solarized.nvim",
|
||
|
lazy = false,
|
||
|
priority = 1000,
|
||
|
config = function()
|
||
|
vim.o.background = "light" -- or 'light'
|
||
|
|
||
|
vim.cmd.colorscheme("solarized")
|
||
|
end,
|
||
|
}
|