return { -- Neovim Lua plugin to visualize and operate on indent scope. -- Part of 'mini.nvim' library. "echasnovski/mini.indentscope", version = false, -- wait till new 0.7.0 release to put it back on semver event = { "BufReadPost", "BufNewFile" }, opts = { -- symbol = "▏", symbol = "│", options = { try_as_border = true }, }, init = function() vim.api.nvim_create_autocmd("FileType", { pattern = { "alpha", "dashboard", "fzf", "help", "lazy", "lazyterm", "mason", "neo-tree", "notify", "snacks_dashboard", "snacks_notif", "snacks_terminal", "snacks_win", "toggleterm", "Trouble", "trouble", }, callback = function() vim.b.miniindentscope_disable = true end, }) end, }