summaryrefslogtreecommitdiff
path: root/config/plugins/mini.nix
blob: 48bb0eda45ee6b4c05e23f4bc4cdbce9bbe0c96f (plain)
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
33
34
35
36
{
  plugins.mini = {
    enable = true;

    modules = {
      comment = {};
      pairs = {};
      indentscope = {
        options.try_as_border = true;
      };
    };
  };

  autoCmd = [
    {
      event = ["FileType"];
      pattern = [
        "help"
        "neo-tree"
        "Trouble"
        "lazy"
        "mason"
        "notify"
        "toggleterm"
      ];

      callback = {
        __raw = ''
          function()
            vim.b.miniindentscope_disable = true
          end
        '';
      };
    }
  ];
}