replaced diagflow with tiny-inline-diagnostics
This commit is contained in:
@@ -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