summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/bufferline.lua9
-rw-r--r--plugin/ibl.lua5
-rw-r--r--plugin/lualine.lua2
-rw-r--r--plugin/mini.lua5
4 files changed, 3 insertions, 18 deletions
diff --git a/plugin/bufferline.lua b/plugin/bufferline.lua
index f6e68ef..b03ddff 100644
--- a/plugin/bufferline.lua
+++ b/plugin/bufferline.lua
@@ -12,14 +12,5 @@ require("bufferline").setup({
mode = "buffers",
numbers = "ordinal",
separator_style = "slant",
-
- offsets = {
- {
- filetype = "neo-tree",
- text = "neo-tree",
- highlight = "Directory",
- text_align = "left",
- },
- },
},
})
diff --git a/plugin/ibl.lua b/plugin/ibl.lua
index d780c74..0d42c04 100644
--- a/plugin/ibl.lua
+++ b/plugin/ibl.lua
@@ -7,11 +7,7 @@ require("ibl").setup({
exclude = {
filetypes = {
"help",
- "neo-tree",
"Trouble",
- "lazy",
- "mason",
- "notify",
"toggleterm",
},
},
@@ -22,6 +18,7 @@ require("ibl").setup({
},
scope = {
+ -- Let mini.nvim handle this
enabled = false,
},
})
diff --git a/plugin/lualine.lua b/plugin/lualine.lua
index 8a8f87a..603693d 100644
--- a/plugin/lualine.lua
+++ b/plugin/lualine.lua
@@ -7,5 +7,5 @@ require("lualine").setup({
options = {
theme = "catppuccin",
},
- extensions = { "neo-tree", "trouble" },
+ extensions = { "trouble" },
})
diff --git a/plugin/mini.lua b/plugin/mini.lua
index 1911516..626a5a3 100644
--- a/plugin/mini.lua
+++ b/plugin/mini.lua
@@ -13,13 +13,10 @@ require("mini.indentscope").setup({
vim.api.nvim_create_autocmd("FileType", {
pattern = {
"help",
- "neo-tree",
"Trouble",
- "lazy",
- "mason",
- "notify",
"toggleterm",
},
+
callback = function()
vim.b.miniindentscope_disable = true
end,