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

Commit

Permalink
Merge pull request #3 from ful1e5/dev
Browse files Browse the repository at this point in the history
🪟 Windows `VertSplit` & `StatusLine` underline colors fixed
  • Loading branch information
ful1e5 authored Jun 15, 2021
2 parents abf5410 + d9f36d7 commit 35b13ca
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 35b13ca

Please sign in to comment.