Skip to content

Commit

Permalink
feat!: remove mini.indentscope and just use indent-blankline.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 1, 2024
1 parent ab9455a commit 0e23d5b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 94 deletions.
42 changes: 42 additions & 0 deletions lua/astronvim/plugins/indent-blankline.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
return {
"lukas-reineke/indent-blankline.nvim",
event = { "BufReadPre", "BufNewFile" },
dependencies = {
{
"AstroNvim/astrocore",
opts = function(_, opts)
local maps = opts.mappings
maps.n["<Leader>uI"] = { "<Cmd>IBLToggle<CR>", desc = "Toggle indent guides" }
end,
},
},
main = "ibl",
opts = {
indent = { char = "" },
scope = { show_start = false, show_end = false },
exclude = {
buftypes = {
"nofile",
"prompt",
"quickfix",
"terminal",
},
filetypes = {
"aerial",
"alpha",
"dashboard",
"help",
"lazy",
"mason",
"neo-tree",
"NvimTree",
"neogitstatus",
"notify",
"startify",
"toggleterm",
"Trouble",
},
},
},
config = function(...) require "astronvim.plugins.configs.indent-blankline"(...) end,
}
94 changes: 0 additions & 94 deletions lua/astronvim/plugins/mini-indentscope.lua

This file was deleted.

0 comments on commit 0e23d5b

Please sign in to comment.