Skip to content

Commit

Permalink
fixed #165
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Feb 24, 2022
1 parent 1f5f584 commit f9be6fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- make: tmux prefix fixed
- tmux: set `bg2` as background in 'message-style' fixed #164
- fixed #163
- fixed #165

## [v0.0.4] - 11 Jan 2022

Expand Down
5 changes: 2 additions & 3 deletions lua/github-theme/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ theme.setup = function(cfg)
-- TermCursorNC= { }, -- cursor in an unfocused terminal
ErrorMsg = { fg = c.error }, -- error messages on the command line
VertSplit = { fg = c.bg_visual, bg = c.bg }, -- the column separating vertically split windows
Folded = { fg = c.fg_folded, bg = c.bg_folded }, -- line used for closed folds
Folded = { fg = c.fg, bg = c.bg_visual_selection }, -- line used for closed folds
FoldColumn = { link = 'Folded' }, -- 'foldcolumn'
SignColumn = { fg = c.fg_gutter, bg = cfg.transparent and c.none or c.bg }, -- column where |signs| are displayed
SignColumnSB = { fg = c.fg_gutter, bg = c.bg_sidebar }, -- column where |signs| are displayed
Expand All @@ -59,7 +59,7 @@ theme.setup = function(cfg)
PmenuThumb = { bg = c.pmenu.sbar }, -- Popup menu: Thumb of the scrollbar.
Question = { fg = c.blue }, -- |hit-enter| prompt and yes/no questions
QuickFixLine = { bg = util.darken(c.blue, 0.2), style = Styles.Bold }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
Search = { fg = c.fg_search, bg = c.bg_search }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
Search = { fg = c.none, bg = c.bg_search }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
IncSearch = { link = 'Search' }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c"
SpecialKey = { fg = c.fg_gutter }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
SpellBad = { sp = c.error, style = Styles.Undercurl }, -- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
Expand Down Expand Up @@ -545,7 +545,6 @@ theme.setup = function(cfg)
}

if cfg.hide_inactive_statusline then
print('hiding statusline')
hi.base.StatusLineNC = { fg = c.bg, bg = c.bg, sp = c.bg_visual, style = Styles.Underline }
end

Expand Down

0 comments on commit f9be6fa

Please sign in to comment.