nvim/lua/custom/plugins/solarized.lua
Lucas Barbieri 6afe9d61c3 add the rest of my config
pretty much all of it, i just need to probably add some sort of barbar.nvim thingy or bufferline, idk.
2023-08-01 20:43:02 -03:00

19 lines
376 B
Lua

return {
'maxmx03/solarized.nvim',
lazy = false,
priority = 1000,
config = function()
vim.o.background = 'dark' -- or 'light'
require('solarized').setup({
transparent = true,
theme = 'neo',
styles = {
functions = { bold = true, italic = false }
},
})
vim.cmd.colorscheme 'solarized'
end,
}
-- vim: sw=2 ts=2 sts=2 et