dotfiles/nvim/dot-config/nvim/after/plugin/indent-blankline.lua

12 lines
277 B
Lua
Raw Normal View History

2023-01-01 14:16:21 +00:00
local ok, indent_blankline = pcall(require, "indent_blankline")
if not ok then
return
end
indent_blankline.setup {
char = "",
show_current_context = true,
buftype_exclude = { "help" },
filetype_exclude = { "alpha", "startify", "packer", "NvimTree" },
}