1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
return {
"nvimdev/lspsaga.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter", -- optional
"nvim-tree/nvim-web-devicons", -- optional
},
opts = {
lightbulb = {
enable = false,
},
diagnostic = {
show_layout = "float",
auto_preview = true,
keys = {
exec_action = "o",
quit = "q",
},
},
},
keys = {
{
"<leader>e",
"<cmd>Lspsaga show_buf_diagnostics<cr>",
desc = "Show buffer diagnostic",
},
{
"<leader>we",
"<cmd>Lspsaga show_workspace_diagnostics<cr>",
desc = "Show workspace diagnostic",
},
},
}
|