summaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/lsp_saga.lua
blob: 546c073056e7e1d0256146819cf1b6c80213c0ea (plain) (blame)
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",
		},
	},
}