other scheme

pull/116/head
Luke Shay 2024-11-01 09:50:32 -05:00
parent fd13ca060d
commit 8b3fb2dec0
No known key found for this signature in database
1 changed files with 17 additions and 0 deletions

View File

@ -29,6 +29,23 @@ return {
vim.o.background = "light"
end,
},
{
"altercation/vim-colors-solarized",
lazy = true,
name = "solarized",
config = function()
-- Set Vim global variables for Solarized
vim.g.solarized_termcolors = 256
vim.g.solarized_bold = true
vim.g.solarized_underline = true
vim.g.solarized_italic = true
vim.g.solarized_visibility = "low" -- Options: 'normal', 'low', 'high'
vim.g.solarized_diffmode = "low"
-- Set background to light or dark
vim.o.background = "light" -- or "dark"
end,
},
{
"LazyVim/LazyVim",
opts = {