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

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