refactor(nvim): split up init.lua
This commit is contained in:
parent
5a01031a10
commit
4d111dd744
3 changed files with 73 additions and 46 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue