123456789101112131415161718192021222324252627 |
- -- 配置所行线1
- return {
- "lukas-reineke/indent-blankline.nvim",
- main = "ibl",
- opts = {
- indent = {
- char = "│",
- tab_char = "│",
- },
- scope = { enabled = false },
- exclude = {
- filetypes = {
- "help",
- "alpha",
- "dashboard",
- "neo-tree",
- "Trouble",
- "trouble",
- "lazy",
- "mason",
- "notify",
- "toggleterm",
- "lazyterm",
- },
- },
- }
- }
|