blob: 8d515de93e14f661ab874216aad58c76374a56f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require("indent_blankline").setup {
char = "|",
show_end_of_line = false,
disable_with_nolist = true,
buftype_exclude = {"terminal"},
filetype_exclude = { "help", "startify", "git", "markdown" },
}
vim.cmd[[
augroup indent_blankline
autocmd!
autocmd InsertEnter * IndentBlanklineDisable
autocmd InsertLeave * IndentBlanklineEnable
augroup END
]]
|