From 42a3680d8742d2840d99177b3056c6667535e431 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sat, 22 Jan 2022 13:44:43 +0530 Subject: [PATCH] nvim: yolokai: Remove style for statusline This fixes the weird color artifact where the vertical split would meet the statusline. --- nvim/.config/nvim/colors/yolokai.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/.config/nvim/colors/yolokai.vim b/nvim/.config/nvim/colors/yolokai.vim index f689922..13ac6b7 100644 --- a/nvim/.config/nvim/colors/yolokai.vim +++ b/nvim/.config/nvim/colors/yolokai.vim @@ -115,8 +115,8 @@ local highlight_groups = { --[[ 4.2... Editor UI ]] --[[ 4.2.1. Status Line]] - StatusLine = {bg=black, fg=warmgrey, style='inverse'}, - StatusLineNC = {bg=black, fg=darkgrey, style='inverse'}, + StatusLine = {bg=black, fg=warmgrey, style=NONE}, + StatusLineNC = {bg=black, fg=darkgrey, style=NONE}, StatusLineTerm = 'StatusLine' , StatusLineTermNC = 'StatusLineNC',