nvim/lua/custom/plugins/tiny_inline_diagnostic.lua

10 lines
294 B
Lua
Raw Normal View History

2024-11-28 11:06:28 -03:00
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
}