fix(config): now it not removes .setup() from itself after calling
.setup()
This commit is contained in:
parent
e49f3fadd7
commit
eac5560200
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ local default_config = {
|
|||
|
||||
---@param user_config gopher.Config|nil
|
||||
function config.setup(user_config)
|
||||
config = vim.tbl_deep_extend("force", {}, default_config, user_config or {})
|
||||
config = vim.tbl_deep_extend("force", config, default_config, user_config or {})
|
||||
end
|
||||
|
||||
-- setup ifself, needs for ability to get
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue