replaced diagflow with tiny-inline-diagnostics
This commit is contained in:
@@ -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" },
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
}
|
||||
11
lua/plugins/tiny-inline-diagnostics.lua
Normal file
11
lua/plugins/tiny-inline-diagnostics.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user