Files
dotfiles/.config/nvim/after/plugin/theme.lua
T
2023-10-31 13:18:14 -07:00

11 lines
263 B
Lua

vim.o.background = 'light'
require('solarized').setup({
-- theme = 'neo' -- or comment to use solarized default theme.
styles = {
comments = { italic = true, bold = false },
functions = { italic = true },
variables = { italic = false },
}
})