Skip to content

Instantly share code, notes, and snippets.

@rochacbruno
Created January 22, 2023 18:00
Show Gist options
  • Save rochacbruno/8951119c70f1c8e035fd4333f90087b0 to your computer and use it in GitHub Desktop.
Save rochacbruno/8951119c70f1c8e035fd4333f90087b0 to your computer and use it in GitHub Desktop.
{
"echasnovski/mini.indentscope",
config = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy", "mason" },
callback = function()
vim.b.miniindentscope_disable = true
end,
})
require("mini.indentscope").setup({
event = "BufReadPre",
symbol = "│",
options = { try_as_border = true },
})
end,
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment