add hop support

This commit is contained in:
Michael Chris Lopez
2021-09-06 12:56:58 +08:00
parent 1012160752
commit ca90789a49
3 changed files with 9 additions and 0 deletions

View File

@@ -135,6 +135,7 @@ currently supported.
- [Telescope](https://github.com/nvim-telescope/telescope.nvim)
- [Sneak](https://github.com/justinmk/vim-sneak)
- [Lightspeed](https://github.com/ggandor/lightspeed.nvim)
- [Hop](https://github.com/phaazon/hop.nvim)
- [Lualine](https://github.com/hoob3rt/lualine.nvim)
- [BarBar](https://github.com/romgrk/barbar.nvim)
- [CoC](https://github.com/neoclide/coc.nvim)

View File

@@ -75,6 +75,7 @@ highlight Function guifg=#2C363C guibg=NONE guisp=NONE gui=NONE
highlight GitSignsAdd guifg=#617437 guibg=NONE guisp=NONE gui=NONE
highlight GitSignsChange guifg=#286486 guibg=NONE guisp=NONE gui=NONE
highlight GitSignsDelete guifg=#A8334C guibg=NONE guisp=NONE gui=NONE
highlight HopNextKey2 guifg=#286486 guibg=NONE guisp=NONE gui=NONE
highlight Identifier guifg=#44525B guibg=NONE guisp=NONE gui=NONE
highlight IncSearch guifg=#F0EDEC guibg=#88507D guisp=NONE gui=bold
highlight IndentBlanklineChar guifg=#D4CDCA guibg=NONE guisp=NONE gui=NONE
@@ -153,6 +154,9 @@ highlight! link ErrorMsg Error
highlight! link GitGutterAdd GitSignsAdd
highlight! link GitGutterChange GitSignsChange
highlight! link GitGutterDelete GitSignsDelete
highlight! link HopNextKey LightspeedLabel
highlight! link HopNextKey1 LightspeedLabelDistant
highlight! link HopUnmatched LightspeedGreyWash
highlight! link LightspeedMaskedChar Conceal
highlight! link LightspeedPendingOpArea SneakLabel
highlight! link LightspeedUnlabeledMatch Bold

View File

@@ -291,6 +291,10 @@ local theme = lush(function()
LightspeedPendingChangeOpArea { fg = c.blossom },
LightspeedGreyWash { fg = Comment.fg },
HopNextKey { LightspeedLabel },
HopNextKey1 { LightspeedLabelDistant },
HopNextKey2 { fg = c.water },
HopUnmatched { LightspeedGreyWash } ,
BufferCurrent { TabLineSel },
BufferVisible { fg = StatusLineNC.fg },