replaced diagflow with tiny-inline-diagnostics

This commit is contained in:
2025-09-05 12:28:34 +02:00
parent 658800498c
commit d209a0fb4a
3 changed files with 12 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
return {
'rachartier/tiny-inline-diagnostic.nvim',
event = 'VeryLazy',
priority = 1000,
config = function()
require('tiny-inline-diagnostic').setup({
preset = 'powerline',
})
vim.diagnostic.config({ virtual_text = false }) -- Disable default virtual text
end,
}