nvim/lua/plugins/corn.lua
2024-06-17 15:22:39 +07:00

22 lines
496 B
Lua

return {
"RaafatTurki/corn.nvim",
event = { "LspAttach" },
opts = {
border_style = "rounded",
icons = {
error = "",
warn = "",
hint = "",
info = "",
},
item_preprocess_func = function(item)
return item
end,
},
config = function(_, opts)
vim.diagnostic.config { virtual_text = false }
require("corn").setup(opts)
end,
enabled = false,
}