summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/indent-blankline.lua
blob: 9d140a69a3777cf88cc3d4ab5c88af7dab90d4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
return {
    {
        "lukas-reineke/indent-blankline.nvim",
        main = "ibl",
        opts = {},
        config = function()
            require("ibl").setup {
                indent = {
                    char = "┊",
                },
                exclude = {
                    filetypes = {
                        "dashboard"
                    },
                }
            }
        end,
    },
}