mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-12 17:18:22 -05:00
84c528ddb1
Also update treesitter highlight groups to be aligned with original nord.vim
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 = ''
|
|
}
|
|
}
|