pojokcodeid.nvim-lazy/lua/pcode/plugins/extras/tinydignostic.lua

23 lines
537 B
Lua
Raw Permalink Normal View History

2025-06-11 21:13:56 +07:00
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",
2025-06-14 16:17:17 +07:00
-- signs = {
-- left = "",
-- right = "",
-- diag = "●",
-- arrow = "  ",
-- up_arrow = "  ",
-- vertical = " │",
-- vertical_end = " └",
-- },
blend = {
factor = 0.22,
},
2025-06-11 21:13:56 +07:00
})
end,
}