home-manager/neovim/themes.lua

9 lines
131 B
Lua

local module = {}
function module.setup(theme)
vim.cmd("colorscheme solarized")
vim.opt.background = theme
end
return module