added conform and tiny inline diagnostics to nvim
This commit is contained in:
9
packages/nvim/lua/plugins/tiny-inline-diagnostic.lua
Normal file
9
packages/nvim/lua/plugins/tiny-inline-diagnostic.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
"rachartier/tiny-inline-diagnostic.nvim",
|
||||
event = "VeryLazy", -- Or `LspAttach`
|
||||
priority = 1000, -- needs to be loaded in first
|
||||
config = function()
|
||||
require('tiny-inline-diagnostic').setup()
|
||||
vim.diagnostic.config({ virtual_text = false }) -- Only if needed in your configuration, if you already have native LSP diagnostics
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user