1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update indentBlankline conf

This commit is contained in:
jdhao 2021-10-16 21:10:57 +08:00
parent 3a32e04af1
commit 768d02b040

View File

@ -1,2 +1,7 @@
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = { "help", "startify", "git", "markdown" }
require("indent_blankline").setup {
char = "|",
show_end_of_line = false,
disable_with_nolist = true,
buftype_exclude = {"terminal"},
filetype_exclude = { "help", "startify", "git", "markdown" },
}