| 12345678910111213141516171819202122232425262728293031 |
- local M = {
- "lukas-reineke/indent-blankline.nvim",
- main = "ibl",
- }
- M.config = function()
- require("ibl").setup({
- indent = {
- char = "│",
- tab_char = "│",
- },
- scope = { enabled = false },
- exclude = {
- filetypes = {
- "help",
- "alpha",
- "dashboard",
- "neo-tree",
- "Trouble",
- "trouble",
- "lazy",
- "mason",
- "notify",
- "toggleterm",
- "lazyterm",
- },
- },
- })
- end
- return M
|