diff options
| author | seth <[email protected]> | 2024-07-16 19:04:27 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-07-16 22:24:21 -0400 |
| commit | 2e7e1ce219b43bb74f67875200dd4b68758ffd27 (patch) | |
| tree | 11ca91f55aa47c5b341aaf65f3626c9681a22b07 /nixvim/plugins/ibl.nix | |
| parent | 255e7c40af44aeedf19a3ca682cfc8a098266e8a (diff) | |
back to nixvim againnixvim-again
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; + }; + }; +} |
