Skip to content

Commit

Permalink
fix: tbl_deep_extend config instead of tbl_extend
Browse files Browse the repository at this point in the history
  • Loading branch information
mawkler committed Aug 3, 2024
1 parent d0ccc97 commit da2890d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/markview.lua
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ end, {
markview.setup = function (user_config)
---@type markview.config
-- Merged configuration tables
markview.configuration = vim.tbl_extend("keep", user_config or {}, markview.configuration);
markview.configuration = vim.tbl_deep_extend("keep", user_config or {}, markview.configuration);

if vim.islist(markview.configuration.highlight_groups) then
markview.add_hls(markview.configuration.highlight_groups);
Expand Down

0 comments on commit da2890d

Please sign in to comment.