From 289109c247e3aeb62788f7738a61dfb6dd44b6f6 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 25 Jul 2022 21:48:45 -0700 Subject: [PATCH] nvim: disable indent_blankline context start --- .config/nvim/lua/blake/other.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.config/nvim/lua/blake/other.lua b/.config/nvim/lua/blake/other.lua index b530d65..d64f436 100644 --- a/.config/nvim/lua/blake/other.lua +++ b/.config/nvim/lua/blake/other.lua @@ -165,9 +165,8 @@ M.indent_blankline = function() let g:indent_blankline_show_current_context = v:true ]] require("indent_blankline").setup { - -- for example, context is off by default, use this to turn it on show_current_context = true, - show_current_context_start = true, + show_current_context_start = false, } end -- <<<