This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
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