6afe9d61c3
pretty much all of it, i just need to probably add some sort of barbar.nvim thingy or bufferline, idk.
19 lines
376 B
Lua
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
|