summaryrefslogtreecommitdiff
path: root/config/plugins/ibl.nix
blob: d794a6a5d755477c788b01335438c90d5ed76e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  plugins.indent-blankline = {
    enable = true;

    exclude.filetypes = [
      "help"
      "neo-tree"
      "Trouble"
      "lazy"
      "mason"
      "notify"
      "toggleterm"
    ];

    indent = {
      char = "│";
      tabChar = "│";
    };

    scope.enabled = false;
  };
}