chore(format)
This commit is contained in:
@@ -7,20 +7,16 @@ local CONTRASTS = {
|
||||
|
||||
---@class Config
|
||||
---@field contrast Contrast
|
||||
---@field float_no_borders boolean
|
||||
|
||||
local M = {
|
||||
---@type Config
|
||||
default = {
|
||||
contrast = CONTRASTS.medium,
|
||||
float_no_borders = true,
|
||||
},
|
||||
}
|
||||
|
||||
---@param user_cfg Config
|
||||
---@return Config
|
||||
function M.make_config(user_cfg)
|
||||
return user_cfg and vim.tbl_extend("force", M.default, user_cfg) or M.default
|
||||
end
|
||||
function M.make_config(user_cfg) return user_cfg and vim.tbl_extend("force", M.default, user_cfg) or M.default end
|
||||
|
||||
return M
|
||||
|
||||
Reference in New Issue
Block a user