Files
nvim/lua/plugins/indent-blankline.lua

26 lines
518 B
Lua
Raw Normal View History

2022-03-03 13:52:43 -05:00
-----------------------------------------------------------
-- 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',
},
}