local M = {} local DEFAULT = { transparent = false, styles = { comments = {}, keywords = {}, functions = {}, variables = {}, type = { bold = true }, }, } M.options = {} function M.set(options) M.options = vim.tbl_deep_extend("force", DEFAULT, options or {}) end M.set() return M