blob: bdf9f37dde0db5b0bdb11a55061c18c68e082b01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local status_ok, trouble = pcall(require, "trouble")
if not status_ok then
return
end
trouble.setup {
icons = false,
fold_open = "v",
fold_closed = ">",
signs = {
error = "[x]",
warning = "[!]",
hint = "[?]",
information = "[i]"
},
}
|