diff --git a/lazy-lock.json b/lazy-lock.json index 1a68278..12c3798 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -73,6 +73,7 @@ "render-markdown.nvim": { "branch": "main", "commit": "e76eb2e4262f0f0a1a7bd7a454dd7d44f1299afd" }, "rustaceanvim": { "branch": "master", "commit": "12504405821c05874d2d1f6b5ec919f9808e2c99" }, "snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" }, + "tiny-inline-diagnostic.nvim": { "branch": "main", "commit": "f64efd33a51ea89bdb847fb3aaf716e96b83ba1a" }, "todo-comments.nvim": { "branch": "main", "commit": "304a8d204ee787d2544d8bc23cd38d2f929e7cc5" }, "toggleterm.nvim": { "branch": "main", "commit": "9a88eae817ef395952e08650b3283726786fb5fb" }, "which-key.nvim": { "branch": "main", "commit": "fcbf4eea17cb299c02557d576f0d568878e354a4" }, diff --git a/lua/plugins/diagflow.lua b/lua/plugins/diagflow.lua deleted file mode 100644 index 23deb34..0000000 --- a/lua/plugins/diagflow.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - 'dgagn/diagflow.nvim', - -- event = 'LspAttach', This is what I use personnally and it works great - opts = { - scope = 'line', - show_sign = false, - show_borders = true, - }, -} diff --git a/lua/plugins/tiny-inline-diagnostics.lua b/lua/plugins/tiny-inline-diagnostics.lua new file mode 100644 index 0000000..74cc870 --- /dev/null +++ b/lua/plugins/tiny-inline-diagnostics.lua @@ -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, +}