blob: 8e257980e6f8e52f6dc66334e5ff54467b2e55a7 (
plain)
1
2
3
4
5
6
7
8
|
vim.cmd('highlight IndentBlanklineChar guifg=#3b414c gui=nocombine')
require("indent_blankline").setup {
char = "┊",
show_trailing_blankline_indent = false,
buftype_exclude = {'startify', 'help', 'terminal', 'packer'},
filetype_exclude = {'startify', 'help', 'terminal', 'packer'},
}
|