cleanup, neovim optimizations and updates ig

This commit is contained in:
Nico
2025-05-29 14:50:58 +02:00
parent 6c601333a0
commit f85d945337
43 changed files with 1186 additions and 275 deletions

View File

@@ -3,7 +3,17 @@ return {
event = "VeryLazy", -- Or `LspAttach`
priority = 1000, -- needs to be loaded in first
config = function()
require('tiny-inline-diagnostic').setup()
require('tiny-inline-diagnostic').setup({
preset = "ghost";
options = {
use_icons_from_diagnostic = true,
multilines = {
enabled = true,
},
show_all_diags_on_cursorline = false,
enable_on_insert = true,
}
})
vim.diagnostic.config({ virtual_text = false }) -- Only if needed in your configuration, if you already have native LSP diagnostics
end
}