nvim/lua/user/plugins/editor/indent-blankline.lua
2023-10-28 00:00:00 +07:00

35 lines
765 B
Lua

return {
indent = { char = '', tab_char = '' },
scope = {
show_start = false,
show_end = false,
include = { node_type = { ['*'] = { '*' } } },
},
exclude = {
filetypes = {
'alpha',
'lazy',
'log',
'notify',
'undotree',
'Trouble',
'NvimTree',
'diff',
'qf',
'help',
'prompt',
'noice',
'aerial',
'TelescopePrompt',
'Trouble',
'OverseerForm',
'gitcommit',
'markdown',
'org',
'json',
'txt',
'', -- for all buffers without a filetype
},
},
}