added conform and tiny inline diagnostics to nvim

This commit is contained in:
Nico
2025-05-05 20:15:02 +02:00
parent 9476766bb0
commit 6c601333a0
4 changed files with 43 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
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()
vim.diagnostic.config({ virtual_text = false }) -- Only if needed in your configuration, if you already have native LSP diagnostics
end
}