nvim/lua/user/plugins/ui/trouble.lua
2023-10-28 00:00:00 +07:00

21 lines
488 B
Lua

local icons = require('user.config.vars').icons
return {
fold_open = '',
fold_closed = '',
action_keys = {
open_split = { '<c-h>' },
open_vsplit = { '<c-v>' },
open_tab = { '<c-t>' },
},
auto_open = false,
auto_close = true,
signs = {
error = icons.notify.error,
warning = icons.notify.warn,
information = icons.notify.info,
hint = icons.notify.hint,
other = icons.notify.trace,
},
}