dotfiles/nvim/dot-config/nvim/after/plugin/indent-blankline.lua
Nikos Papadakis 1b9e34b141
use just
2023-02-18 14:35:56 +02:00

11 lines
277 B
Lua

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" },
}