refactor(nvim): split up init.lua

This commit is contained in:
Michael Mandl 2024-07-29 13:13:03 +02:00
parent 5a01031a10
commit 4d111dd744
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
3 changed files with 73 additions and 46 deletions

View file

@ -1,2 +1,8 @@
vim.cmd("colorscheme solarized")
vim.opt.background = vim_theme
local module = {}
function module.setup(theme)
vim.cmd("colorscheme solarized")
vim.opt.background = theme
end
return module