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

    settings = {
      exclude = {
        filetypes = [
          "help"
          "Trouble"
          "toggleterm"
        ];
      };

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

      # Let mini.nvim handle this
      scope.enabled = false;
    };
  };
}