summaryrefslogtreecommitdiff
path: root/plugin/ibl.lua
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-16 19:04:27 -0400
committerseth <[email protected]>2024-07-16 22:24:21 -0400
commit2e7e1ce219b43bb74f67875200dd4b68758ffd27 (patch)
tree11ca91f55aa47c5b341aaf65f3626c9681a22b07 /plugin/ibl.lua
parent255e7c40af44aeedf19a3ca682cfc8a098266e8a (diff)
back to nixvim againnixvim-again
Diffstat (limited to 'plugin/ibl.lua')
-rw-r--r--plugin/ibl.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/plugin/ibl.lua b/plugin/ibl.lua
deleted file mode 100644
index 0d42c04..0000000
--- a/plugin/ibl.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-if vim.g.did_load_ibl_plugin then
- return
-end
-vim.g.did_load_ibl_plugin = true
-
-require("ibl").setup({
- exclude = {
- filetypes = {
- "help",
- "Trouble",
- "toggleterm",
- },
- },
-
- indent = {
- char = "│",
- tab_char = "│",
- },
-
- scope = {
- -- Let mini.nvim handle this
- enabled = false,
- },
-})