File tree 2 files changed +5
-2
lines changed
lua/tiny-inline-diagnostic 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,10 @@ local function normalize_config(config)
76
76
config .options .overflow .mode = config .options .overflow .mode :lower ()
77
77
end
78
78
79
- if config .preset then
79
+ if config .signs then
80
+ local preset = presets .build (config .preset or " modern" , config .transparent_bg )
81
+ config = vim .tbl_deep_extend (" keep" , config , preset )
82
+ elseif config .preset then
80
83
local preset = presets .build (config .preset :lower (), config .transparent_bg )
81
84
config = vim .tbl_deep_extend (" force" , config , preset )
82
85
end
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ function M.build(name, transparent_bg)
76
76
}),
77
77
powerline = create_preset ({
78
78
signs = {
79
- arrow = " " ,
79
+ arrow = " " ,
80
80
up_arrow = " " ,
81
81
right = " " ,
82
82
left = " " ,
You can’t perform that action at this time.
0 commit comments