mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-13 01:28:24 -05:00
18 lines
387 B
Lua
18 lines
387 B
Lua
|
return require('trouble').setup {
|
||
|
mode = 'lsp_workspace_diagnostics',
|
||
|
fold_open = ' ',
|
||
|
fold_closed = '',
|
||
|
action_keys = {
|
||
|
open_split = {'<c-h>'},
|
||
|
open_vsplit = {'<c-v>'},
|
||
|
open_tab = {'<c-t>'}
|
||
|
},
|
||
|
signs = {
|
||
|
error = '',
|
||
|
warning = '',
|
||
|
hint = '',
|
||
|
information = '',
|
||
|
other = ''
|
||
|
}
|
||
|
}
|