Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
🪟 Windows VertSplit & StatusLine underline colors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Jun 15, 2021
1 parent 978f2d0 commit d9f36d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/onedark/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d9f36d7

Please sign in to comment.