summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/indent-blankline.lua
blob: 09062983be0f9df68b13ffd8c12a7c68e38433b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
    {
        "lukas-reineke/indent-blankline.nvim",
        init = function()
            vim.opt.list = true
        end,
        opts = {
            show_current_context = true,
            char = "┊",
            buftype_exclude = {"terminal"},
            filetype_exclude = {"dashboard", "help", "man"}
        },
    },
}