update blankline config

This commit is contained in:
siduck76 2021-09-01 10:09:02 +05:30
parent ec7b15fead
commit a3e436d16d
1 changed files with 12 additions and 3 deletions

View File

@ -43,13 +43,22 @@ M.better_escape = function()
end
M.blankline = function()
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
require("indent_blankline").setup {
indentLine_enabled = 1,
char = "",
indent_blankline_filetype_exclude = { "help", "terminal", "dashboard", "packer" },
indent_blankline_filetype_exclude = {
"help",
"terminal",
"dashboard",
"packer",
"lspinfo",
"TelescopePrompt",
"TelescopeResults",
},
indent_blankline_buftype_exclude = { "terminal" },
indent_blankline_show_trailing_blankline_indent = false,
indent_blankline_show_first_indent_level = false,
}
end