SoloVim/after/plugin/indent-blankline.lua
2023-08-28 21:32:28 +03:00

31 lines
616 B
Lua

if not pcall(require, "indent_blankline") then
return
end
vim.opt.list = true
vim.opt.listchars:append("space:⋅")
vim.opt.listchars:append("eol:↴")
require("indent_blankline").setup({
char = "",
show_trailing_blankline_indent = true,
show_first_indent_level = true,
use_treesitter = true,
show_end_of_line = true,
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = false,
buftype_exclude = { "terminal", "nofile" },
filetype_exclude = {
"NvimTree",
"Trouble",
"alpha",
"dashboard",
"help",
"lazy",
"neogitstatus",
"packer",
"startify",
},
})