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

17 lines
303 B
Lua

vim.o.background = 'light'
require('solarized').setup({
theme = 'default', -- or 'neo'
styles = {
comments = { italic = true, bold = false },
functions = { italic = true },
variables = { italic = false },
}
})
vim.cmd.colorscheme = 'solarized'
function test()
print('test')
end