1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-03-28 10:24:47 +01:00
Files
dotfiles/.config/nvim/lua/plugins/trouble.lua

20 lines
306 B
Lua

return {
-- list of errors
"folke/trouble.nvim",
dependencies = {
{
"nvim-tree/nvim-web-devicons",
lazy = true,
},
},
keys = {
{
"<F4>",
"<cmd>Trouble diagnostics toggle<CR>",
mode = "n",
desc = "LSP: toggle error list",
},
},
opts = {},
}