neo2005/config/plugins/lsp/trouble.nix

29 lines
491 B
Nix
Raw Permalink Normal View History

2024-12-12 18:55:51 +01:00
{ pkgs, ... }: {
plugins.trouble = {
enable = true;
settings.auto_close = true;
};
keymaps = [
{
mode = "n";
key = "<leader>xx";
action = "<cmd>Trouble diagnostics<cr>";
2024-12-12 18:55:51 +01:00
options = {
silent = true;
desc = "Show trouble diagnostics";
2024-12-12 18:55:51 +01:00
};
}
{
mode = "n";
key = "<leader>xt";
action = "<cmd>Trouble TODO's<cr>";
2024-12-12 18:55:51 +01:00
options = {
silent = true;
desc = "Show TODOs";
2024-12-12 18:55:51 +01:00
};
}
2024-12-12 18:55:51 +01:00
];
}