mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2025-12-05 02:53:38 -08:00
18 lines
688 B
Lua
18 lines
688 B
Lua
return {
|
|
"sontungexpt/better-diagnostic-virtual-text",
|
|
event = "LspAttach",
|
|
opts = {
|
|
ui = {
|
|
wrap_line_after = 150, -- wrap the line after this length to avoid the virtual text is too long
|
|
left_kept_space = 3, --- the number of spaces kept on the left side of the virtual text, make sure it enough to custom for each line
|
|
right_kept_space = 3, --- the number of spaces kept on the right side of the virtual text, make sure it enough to custom for each line
|
|
arrow = " ",
|
|
up_arrow = " ",
|
|
down_arrow = " ",
|
|
above = false, -- the virtual text will be displayed above the line
|
|
},
|
|
priority = 2003, -- the priority of virtual text
|
|
inline = true,
|
|
},
|
|
}
|