Skip to content

Commit

Permalink
Merge pull request #52 from ful1e5/feature/plugin-support
Browse files Browse the repository at this point in the history
feat: hop.nvim plugin support
  • Loading branch information
ful1e5 authored Jul 30, 2021
2 parents 6d9094d + 6770994 commit 347b293
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Terminal themes are structured through `extra/init.lua`
- Area for messages and cmdline with `bold` text highlight #44
- `hideEndOfBuffer` options added. Enabling this option, will hide filler lines (~) after the end of the buffer #46
- `nvim-compe`, `barbar.nvim` plugins support
- `nvim-compe`, `barbar.nvim`, `hop.nvim` plugins support

### Fixes

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Extra color configs for **kitty**, **iTerm**, **Konsole** and **Alacritty** can
- [barbar.nvim](https://github.com/romgrk/barbar.nvim)
- [dashboard-nvim](https://github.com/glepnir/dashboard-nvim)
- [Git Signs](https://github.com/lewis6991/gitsigns.nvim)
- [hop.nvim](https://github.com/phaazon/hop.nvim)
- [Indent Blankline](https://github.com/lukas-reineke/indent-blankline.nvim)
- [LSP Diagnostics](https://neovim.io/doc/user/lsp.html)
- [LSP Trouble](https://github.com/folke/lsp-trouble.nvim)
Expand Down
8 changes: 7 additions & 1 deletion lua/github-theme/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,13 @@ function M.setup(config)
BufferInactiveSign = {bg = c.bg2, fg = util.darken(c.fg_dark, 0.4, c.bg2)},
BufferInactiveTarget = {bg = c.bg2, fg = c.red},
BufferTabpages = {bg = c.bg2, fg = c.none},
BufferTabpage = {bg = c.bg2, fg = c.border_highlight}
BufferTabpage = {bg = c.bg2, fg = c.border_highlight},

-- Hop
HopNextKey = {fg = c.magenta, style = "bold"},
HopNextKey1 = {fg = c.blue, style = "bold"},
HopNextKey2 = {fg = util.darken(c.blue, 0.3)},
HopUnmatched = {fg = c.fg_dark}
}

if config.hideInactiveStatusline then
Expand Down

0 comments on commit 347b293

Please sign in to comment.