File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
36
36
37
37
- #238 fixed
38
38
- #241 fixed
39
+ - #243 fixed
39
40
40
41
## [ v0.0.7] - 16 January 2023
41
42
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ M.load = function(opts)
49
49
50
50
-- override colors
51
51
local overrides = config .options .overrides (hi .colors )
52
+
52
53
util .apply_overrides (hi .base , overrides , config .options .dev )
53
54
util .apply_overrides (hi .plugins , overrides , config .options .dev )
54
55
@@ -69,10 +70,10 @@ M.setup = function(opts)
69
70
-- TODO: Remove these individual conditions when migration
70
71
-- from old config to 'opts.options' has been DONE.
71
72
if opts .colors then
72
- config .set_options ({ opts .colors })
73
+ config .set_options ({ colors = opts .colors })
73
74
end
74
75
if opts .overrides then
75
- config .set_options ({ opts .overrides })
76
+ config .set_options ({ overrides = opts .overrides })
76
77
end
77
78
if opts .dev then
78
79
config .set_options ({ opts .dev })
You can’t perform that action at this time.
0 commit comments