86 lines
2.0 KiB
Lua
86 lines
2.0 KiB
Lua
return {
|
|
"Maan2003/lsp_lines.nvim",
|
|
event = "VimEnter",
|
|
name = "lsp_lines.nvim",
|
|
config = function()
|
|
local signs = {
|
|
Error = " ",
|
|
Warning = " ",
|
|
Hint = " ",
|
|
Info = " ",
|
|
Other = " ",
|
|
}
|
|
for type, icon in pairs(signs) do
|
|
local hl = "DiagnosticSign" .. type
|
|
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
|
|
end
|
|
|
|
require("lsp_lines").setup()
|
|
|
|
vim.schedule(function()
|
|
vim.diagnostic.config({
|
|
virtual_text = false,
|
|
virtual_improved = {
|
|
current_line = "hide",
|
|
},
|
|
virtual_lines = { highlight_whole_line = false, only_current_line = true },
|
|
})
|
|
end)
|
|
end,
|
|
keys = {
|
|
{
|
|
"<leader>l",
|
|
function()
|
|
local new_value = not vim.diagnostic.config().virtual_lines.only_current_line
|
|
vim.diagnostic.config({
|
|
virtual_text = not new_value,
|
|
virtual_improved = {
|
|
current_line = new_value and "hide" or "show",
|
|
},
|
|
virtual_lines = { only_current_line = new_value },
|
|
})
|
|
return new_value
|
|
end,
|
|
desc = "Toggle LSP Lines",
|
|
},
|
|
},
|
|
{
|
|
"luozhiya/lsp-virtual-improved.nvim",
|
|
event = { "LspAttach" },
|
|
config = function()
|
|
require("lsp-virtual-improved").setup()
|
|
end,
|
|
},
|
|
{
|
|
"dgagn/diagflow.nvim",
|
|
opts = {
|
|
toggle_event = { "InsertEnter" },
|
|
},
|
|
},
|
|
{
|
|
"folke/trouble.nvim",
|
|
event = "VimEnter",
|
|
config = function()
|
|
-- Diagnostics
|
|
require("trouble").setup({
|
|
signs = {
|
|
-- icons / text used for a diagnostic
|
|
error = " ",
|
|
warning = " ",
|
|
hint = " ",
|
|
information = " ",
|
|
other = " ",
|
|
},
|
|
use_diagnostic_signs = false, -- enabling this will use the signs defined in your lsp client
|
|
})
|
|
end,
|
|
keys = {
|
|
{ "<leader>xt", "<cmd>:Telescope diagnostics<CR>" },
|
|
{ "<leader>xw", "<cmd>:Trouble workspace_diagnostics<CR>" },
|
|
{ "<leader>xd", "<cmd>:Trouble document_diagnostics<CR>" },
|
|
{ "[g", "<cmd>lua vim.diagnostic.goto_prev()<CR>" },
|
|
{ "]g", "<cmd>lua vim.diagnostic.goto_next()<CR>" },
|
|
},
|
|
},
|
|
}
|