summaryrefslogtreecommitdiff
path: root/lua/getchoo/plugins/ibl.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/getchoo/plugins/ibl.lua')
-rw-r--r--lua/getchoo/plugins/ibl.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/lua/getchoo/plugins/ibl.lua b/lua/getchoo/plugins/ibl.lua
new file mode 100644
index 0000000..ae4481f
--- /dev/null
+++ b/lua/getchoo/plugins/ibl.lua
@@ -0,0 +1,27 @@
+return {
+ {
+ "indent-blankline.nvim",
+ event = require("getchoo.utils").lazy_file,
+ after = function()
+ require("ibl").setup({
+ exclude = {
+ filetypes = {
+ "help",
+ "Trouble",
+ "toggleterm",
+ },
+ },
+
+ indent = {
+ char = "│",
+ tab_char = "│",
+ },
+
+ scope = {
+ -- Let mini.nvim handle this
+ enabled = false,
+ },
+ })
+ end
+ }
+}