You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
287 B

local M = require('module'):new()
-- We run this late to give this a chance to override most other modules since
-- they're explicitly set by the user.
function M:run()
for t,opts in pairs(self.config.settings) do
for k, v in pairs(opts) do
vim[t][k] = v
end
end
end
return M