From d9f36d77b8d217c5f23245eff0c5c2d1a6ccd0e0 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Tue, 15 Jun 2021 12:09:34 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=9F=20Windows=20`VertSplit`=20&=20`Sta?= =?UTF-8?q?tusLine`=20underline=20colors=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/onedark/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/onedark/theme.lua b/lua/onedark/theme.lua index e17198d..8799ec8 100644 --- a/lua/onedark/theme.lua +++ b/lua/onedark/theme.lua @@ -32,7 +32,7 @@ function M.setup(config) -- TermCursor = { }, -- cursor in a focused terminal -- TermCursorNC= { }, -- cursor in an unfocused terminal ErrorMsg = {fg = c.error}, -- error messages on the command line - VertSplit = {fg = c.bg}, -- the column separating vertically split windows + VertSplit = {fg = c.bg_visual}, -- the column separating vertically split windows Folded = {fg = c.blue, bg = c.fg_gutter}, -- line used for closed folds FoldColumn = {bg = c.bg, fg = c.fg_gutter}, -- 'foldcolumn' SignColumn = {bg = config.transparent and c.none or c.bg, fg = c.fg_gutter}, -- column where |signs| are displayed @@ -319,7 +319,7 @@ function M.setup(config) } if config.hideInactiveStatusline then - local inactive = {style = "underline", bg = c.bg, fg = c.bg, sp = c.border} + local inactive = {style = "underline", bg = c.bg, fg = c.bg, sp = c.bg_visual} -- StatusLineNC theme.base.StatusLineNC = inactive