nvim: disable indent_blankline context start

This commit is contained in:
PowerUser64 2022-07-25 21:48:45 -07:00
parent c10da0b928
commit 289109c247

View file

@ -165,9 +165,8 @@ M.indent_blankline = function()
let g:indent_blankline_show_current_context = v:true let g:indent_blankline_show_current_context = v:true
]] ]]
require("indent_blankline").setup { require("indent_blankline").setup {
-- for example, context is off by default, use this to turn it on
show_current_context = true, show_current_context = true,
show_current_context_start = true, show_current_context_start = false,
} }
end end
-- <<< -- <<<