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

19 lines
577 B
Lua
Raw Normal View History

return {
"lukas-reineke/indent-blankline.nvim",
2023-02-20 11:32:30 +00:00
event = { "BufReadPre", "BufNewFile" },
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,
}