Skip to content

Commit

Permalink
inherit eof color from fg_gutter projekt0n#150
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Dec 18, 2021
1 parent 8612308 commit b78e863
Show file tree
Hide file tree
Showing 3 changed files with 5 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
- dark foreground color for visited entries in telescope.nvim
- Fix #144 - Repatch removed hop.nvim highlights
- Fix #133 - highlights of inactive tabline in lualine plugin
- inherit `eof` color from `fg_gutter` #150

## [v0.0.3] - 09 Dec 2021

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Extra color configs for **kitty**, **iTerm**, **Konsole**, **tmux** and **Alacri

## Plugin Support

- [Bultin lsp diagnostics](https://neovim.io/doc/user/lsp.html)
- [Builtin lsp diagnostics](https://neovim.io/doc/user/lsp.html)
- [ale](https://github.com/dense-analysis/ale)
- [circles.nvim](https://github.com/projekt0n/circles.nvim)
- [coc.nvim](https://github.com/neoclide/coc.nvim)
Expand Down
5 changes: 3 additions & 2 deletions lua/github-theme/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -539,8 +539,9 @@ function M.setup(config)

-- EndOfBuffer
colors.sidebar_eob = config.dark_sidebar and colors.bg2 or colors.bg
colors.sidebar_eob = config.hide_end_of_buffer and colors.sidebar_eob or colors.fg_light
colors.eob = config.hide_end_of_buffer and colors.bg or colors.fg_light
colors.sidebar_eob = config.hide_end_of_buffer and colors.sidebar_eob or
colors.fg_gutter
colors.eob = config.hide_end_of_buffer and colors.bg or colors.fg_gutter

-- Statusline
colors.bg_statusline = colors.blue
Expand Down

0 comments on commit b78e863

Please sign in to comment.