Skip to content

Commit

Permalink
fix(config)!: overrides no longer merge with defaults
Browse files Browse the repository at this point in the history
resolves #123 - may impact existing user configs so marked as breaking
see issue for more info
  • Loading branch information
scottmckendry committed Aug 17, 2024
1 parent 9454c83 commit 458f1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/cyberdream/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function M.setup()
if type(overrides) == "function" then
overrides = overrides(t)
end
theme.highlights = vim.tbl_deep_extend("force", theme.highlights, overrides or {})
theme.highlights = vim.tbl_extend("force", theme.highlights, overrides or {})

return theme
end
Expand Down

0 comments on commit 458f1ed

Please sign in to comment.