indent-blankline.lua 459 B

123456789101112131415161718192021222324252627
  1. -- 配置所行线1
  2. return {
  3. "lukas-reineke/indent-blankline.nvim",
  4. main = "ibl",
  5. opts = {
  6. indent = {
  7. char = "│",
  8. tab_char = "│",
  9. },
  10. scope = { enabled = false },
  11. exclude = {
  12. filetypes = {
  13. "help",
  14. "alpha",
  15. "dashboard",
  16. "neo-tree",
  17. "Trouble",
  18. "trouble",
  19. "lazy",
  20. "mason",
  21. "notify",
  22. "toggleterm",
  23. "lazyterm",
  24. },
  25. },
  26. }
  27. }