Files
2022-12-19 15:52:56 -07:00

12 lines
275 B
Lua

local M = {}
function M.setup()
local g = vim.g
g.indent_blankline_char = ""
g.indent_blankline_filetype_exclude = {"help", "packer"}
g.indent_blankline_buftype_exclude = {"terminal", "nofile"}
g.indent_blankline_show_trailing_blankline_indent = false
end
return M