mini-indentscope.lua 615 B

1234567891011121314151617181920212223242526272829
  1. return {
  2. "echasnovski/mini.indentscope",
  3. version = false, -- wait till new 0.7.0 release to put it back on semver
  4. opts = {
  5. -- symbol = "▏",
  6. symbol = "│",
  7. options = { try_as_border = true },
  8. },
  9. init = function()
  10. vim.api.nvim_create_autocmd("FileType", {
  11. pattern = {
  12. "help",
  13. "alpha",
  14. "dashboard",
  15. "neo-tree",
  16. "Trouble",
  17. "trouble",
  18. "lazy",
  19. "mason",
  20. "notify",
  21. "toggleterm",
  22. "lazyterm",
  23. },
  24. callback = function()
  25. vim.b.miniindentscope_disable = true
  26. end,
  27. })
  28. end,
  29. }