10 lines
294 B
Lua
10 lines
294 B
Lua
|
return {
|
||
|
"rachartier/tiny-inline-diagnostic.nvim",
|
||
|
event = "VeryLazy", -- Or `LspAttach`
|
||
|
priority = 1000, -- needs to be loaded in first
|
||
|
config = function()
|
||
|
vim.diagnostic.config({ virtual_text = false })
|
||
|
require('tiny-inline-diagnostic').setup({})
|
||
|
end
|
||
|
}
|