mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
11 lines
391 B
Lua
11 lines
391 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",
|
|
})
|
|
vim.diagnostic.config({ virtual_text = false }) -- Only if needed in your configuration, if you already have native LSP diagnostics
|
|
end,
|
|
}
|