Skip to content

Commit

Permalink
feat: add flash.nvim support
Browse files Browse the repository at this point in the history
  • Loading branch information
wadackel committed Nov 10, 2023
1 parent 1a94959 commit 9408144
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ From now on, we will gradually support it :dog:
- [easymotion](https://github.com/easymotion/vim-easymotion)
- [fern.vim](https://github.com/lambdalisue/fern.vim)
- [fidget.nvim](https://github.com/j-hui/fidget.nvim)
- [flash.nvim](https://github.com/folke/flash.nvim)
- [fugitive.vim](https://github.com/tpope/vim-fugitive)
- [fzf.vim](https://github.com/junegunn/fzf.vim)
- [lightline.vim](https://github.com/itchyny/lightline.vim)
Expand Down
3 changes: 3 additions & 0 deletions colors/dogrun.vim
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,9 @@ hi ConflictMarkerSeparator guifg=#363859 ctermfg=60 gui=bold cterm=bold
hi EasyMotionTarget guifg=#a8a384 ctermfg=144 gui=bold cterm=bold
hi EasyMotionShade guifg=#545c8c ctermfg=60 guibg=#222433 ctermbg=235
hi EasyMotionIncCursor guifg=#9ea3c0 ctermfg=146 guibg=#222433 ctermbg=235
hi FlashPrompt guifg=#929be5 ctermfg=104 gui=bold cterm=bold
hi FlashPromptIcon guifg=#73c1a9 ctermfg=79 gui=bold cterm=bold
hi FlashLabel guifg=#b871b8 ctermfg=133 gui=bold cterm=bold
hi FidgetTitle guifg=#73c1a9 ctermfg=79 gui=bold cterm=bold
hi FidgetTask guifg=#545c8c ctermfg=60
if has("nvim")
Expand Down
5 changes: 5 additions & 0 deletions generator/src/highlight.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,11 @@ pub fn get_highlights() -> Vec<Highlight> {
hi!("EasyMotionTarget", yellow, -, -, Bold, -),
hi!("EasyMotionShade", weakfg, mainbg, -, -, -),
hi!("EasyMotionIncCursor", mainfg, mainbg, -, -, -),
// flash.nvim
// https://github.com/folke/flash.nvim
hi!("FlashPrompt", purple, -, -, Bold, -),
hi!("FlashPromptIcon", teal, -, -, Bold, -),
hi!("FlashLabel", pink, -, -, Bold, -),
// fidget.nvim
// https://github.com/j-hui/fidget.nvim
hi!("FidgetTitle", teal, -, -, Bold, -),
Expand Down

0 comments on commit 9408144

Please sign in to comment.