Dot_Files/.config/nvim/lua/plugins/configs/indent-blankline.lua
2022-02-20 02:21:12 -06:00

25 lines
549 B
Lua
Executable File

local g = vim.g
g.indent_blankline_char = ""
g.indent_blankline_context_char = ""
-- Disable indent-blankline on these pages.
g.indent_blankline_filetype_exclude = {
"help",
"terminal",
"dashboard",
"packer",
"lsp-installer",
"lspinfo",
}
g.indent_blankline_buftype_exclude = { "terminal" }
g.indent_blankline_show_trailing_blankline_indent = false
g.indent_blankline_show_first_indent_level = true
require("indent_blankline").setup({
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
})