summaryrefslogtreecommitdiff
path: root/nixvim/plugins/trouble.nix
blob: a9719912ca872b099327beace5b2387212b09d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  keymaps = [
    {
      action = "Trouble diagnostics toggle";
      key = "<leader>p";
      mode = "n";
      options = {
        noremap = true;
        silent = true;
      };
    }
  ];

  plugins.trouble = {
    enable = true;
  };
}