26 lines
518 B
Lua
26 lines
518 B
Lua
-----------------------------------------------------------
|
|
-- Indent line configuration file
|
|
-----------------------------------------------------------
|
|
|
|
-- Plugin: indent-blankline
|
|
-- url: https://github.com/lukas-reineke/indent-blankline.nvim
|
|
|
|
|
|
require('indent_blankline').setup {
|
|
char = "▏",
|
|
show_first_indent_level = false,
|
|
filetype_exclude = {
|
|
'help',
|
|
'git',
|
|
'markdown',
|
|
'text',
|
|
'terminal',
|
|
'lspinfo',
|
|
'packer',
|
|
},
|
|
buftype_exclude = {
|
|
'terminal',
|
|
'nofile',
|
|
},
|
|
}
|