mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
22 lines
537 B
Lua
22 lines
537 B
Lua
return {
|
|
"rachartier/tiny-inline-diagnostic.nvim",
|
|
event = "VeryLazy", -- Or `LspAttach`
|
|
priority = 1000, -- needs to be loaded in first
|
|
config = function()
|
|
require("tiny-inline-diagnostic").setup({
|
|
preset = "powerline",
|
|
-- signs = {
|
|
-- left = "",
|
|
-- right = "",
|
|
-- diag = "●",
|
|
-- arrow = " ",
|
|
-- up_arrow = " ",
|
|
-- vertical = " │",
|
|
-- vertical_end = " └",
|
|
-- },
|
|
blend = {
|
|
factor = 0.22,
|
|
},
|
|
})
|
|
end,
|
|
}
|