blankline.lua 494 B

12345678910111213141516171819202122232425262728293031
  1. local M = {
  2. "lukas-reineke/indent-blankline.nvim",
  3. main = "ibl",
  4. }
  5. M.config = function()
  6. require("ibl").setup({
  7. indent = {
  8. char = "│",
  9. tab_char = "│",
  10. },
  11. scope = { enabled = false },
  12. exclude = {
  13. filetypes = {
  14. "help",
  15. "alpha",
  16. "dashboard",
  17. "neo-tree",
  18. "Trouble",
  19. "trouble",
  20. "lazy",
  21. "mason",
  22. "notify",
  23. "toggleterm",
  24. "lazyterm",
  25. },
  26. },
  27. })
  28. end
  29. return M