Skip to content

Commit

Permalink
Merge pull request #44 from ful1e5/main
Browse files Browse the repository at this point in the history
Area for messages and cmdline with `bold` text highlight
  • Loading branch information
ful1e5 committed Jul 22, 2021
2 parents 0826433 + 7b764c0 commit 6b30c4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- added Konsole colorscheme #33
- `github-theme.util.color_overrides` function support "NONE" color (fix related to #36)
- Terminal themes are structured through `extra/init.lua`
- Area for messages and cmdline with `bold` text highlight

### Fixes

Expand All @@ -32,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Enhanced `TabLineSel` is barely readable foreground color fixed #35
- Enhanced `transparent` mode background color
- Add proper `Description` inside `konsole` theme (bug from #33)
- Lualine `normal` section background color set blue color #43

## [v0.0.1] - 9 Jul 2021

Expand Down
2 changes: 1 addition & 1 deletion lua/github-theme/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function M.setup(config)
CursorLineNr = {fg = c.cursor_line_nr}, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line.
MatchParen = {bg = c.syntax.matchParenBG, fg = c.fg}, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
ModeMsg = {fg = c.fg, style = "bold"}, -- 'showmode' message (e.g., "-- INSERT -- ")
MsgArea = {fg = c.fg}, -- Area for messages and cmdline
MsgArea = {fg = c.fg, style = "bold"}, -- Area for messages and cmdline
-- MsgSeparator= { }, -- Separator for scrolled messages, `msgsep` flag of 'display'
MoreMsg = {fg = c.blue}, -- |more-prompt|
NonText = {fg = c.bg}, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
Expand Down

0 comments on commit 6b30c4a

Please sign in to comment.