AutoYADM commit: 2025-01-24 00:45:03

This commit is contained in:
Daniel Fichtinger 2025-01-24 00:45:03 -05:00
parent 3ee15b0f82
commit 235094042b
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
return {
"artemave/workspace-diagnostics.nvim",
keys = {
{
"<leader>xa",
function()
for _, client in ipairs(vim.lsp.get_clients({ bufnr = 0 })) do
require("workspace-diagnostics").populate_workspace_diagnostics(client, 0)
end
end,
{ desc = "Populate Workspace Diagnostics" },
},
},
}