nvim/lua/plugins/trouble.lua

17 lines
361 B
Lua
Raw Normal View History

2024-07-30 10:06:43 -07:00
return {
"folke/trouble.nvim",
event = { "LspAttach" },
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
signs = {
-- icons / text used for a diagnostic
error = "",
warning = "",
hint = "",
information = "",
other = "",
},
},
}