Initial commit

This commit is contained in:
2025-04-30 04:59:01 -05:00
commit 7274197b00
58 changed files with 8010 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
return {
'maxmx03/solarized.nvim',
lazy = false,
priority = 1000,
---@type solarized.config
opts = {},
config = function(_, opts)
vim.o.termguicolors = true
vim.o.background = 'light'
require('solarized').setup(opts)
vim.cmd.colorscheme 'solarized'
end,
}