summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/setup/indent-blankline.lua
blob: 543ded8c823c238f72a9962f1dba98797a94f186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
vim.cmd('highlight IndentBlanklineChar guifg=#3b414c gui=nocombine')

require("ibl").setup {
    char = "┊",
    show_trailing_blankline_indent = false,
    filetype_exclude = {
        "help",
        "terminal",
        "alpha",
        "packer",
        "lspinfo",
        "TelescopePrompt",
        "TelescopeResults",
        "lsp-installer",
        "NvimTree",
        "",
    },
    buftype_exclude = { "terminal", "NvimTree" },
}