Dot_Files/.config/nvim/lua/plugins/configs/indent-blankline.lua

25 lines
549 B
Lua
Raw Normal View History

2022-01-10 09:55:15 -06:00
local g = vim.g
2022-01-10 09:55:15 -06:00
g.indent_blankline_char = ""
g.indent_blankline_context_char = ""
2022-01-10 09:55:15 -06:00
-- Disable indent-blankline on these pages.
g.indent_blankline_filetype_exclude = {
"help",
"terminal",
"dashboard",
"packer",
"lsp-installer",
"lspinfo",
2022-01-10 09:55:15 -06:00
}
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,
})