diff options
Diffstat (limited to 'nixvim/plugins/ibl.nix')
| -rw-r--r-- | nixvim/plugins/ibl.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/nixvim/plugins/ibl.nix b/nixvim/plugins/ibl.nix new file mode 100644 index 0000000..235b04f --- /dev/null +++ b/nixvim/plugins/ibl.nix @@ -0,0 +1,23 @@ +{ + plugins.indent-blankline = { + enable = true; + + settings = { + exclude = { + filetypes = [ + "help" + "Trouble" + "toggleterm" + ]; + }; + + indent = { + char = "│"; + tab_char = "│"; + }; + + # Let mini.nvim handle this + scope.enabled = false; + }; + }; +} |
