nixos/config/nvim/lua/plugins/indent_blankline.lua

18 lines
533 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
config = function()
require("indent_blankline").setup {
show_current_context = true,
show_current_context_start = false,
char_highlight_list = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
"IndentBlanklineIndent3",
"IndentBlanklineIndent4",
"IndentBlanklineIndent5",
"IndentBlanklineIndent6",
},
}
end,
}