From 5ec30e9a2b9047713c060c90a5e7930fafc2a3d6 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 13 Jul 2024 20:12:35 -0400 Subject: flatten plugin structure --- plugin/ibl.lua | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 plugin/ibl.lua (limited to 'plugin/ibl.lua') diff --git a/plugin/ibl.lua b/plugin/ibl.lua new file mode 100644 index 0000000..d780c74 --- /dev/null +++ b/plugin/ibl.lua @@ -0,0 +1,27 @@ +if vim.g.did_load_ibl_plugin then + return +end +vim.g.did_load_ibl_plugin = true + +require("ibl").setup({ + exclude = { + filetypes = { + "help", + "neo-tree", + "Trouble", + "lazy", + "mason", + "notify", + "toggleterm", + }, + }, + + indent = { + char = "│", + tab_char = "│", + }, + + scope = { + enabled = false, + }, +}) -- cgit v1.2.3