Skip to content

Commit

Permalink
feat: add gitsigns.nvim support
Browse files Browse the repository at this point in the history
  • Loading branch information
wadackel committed Apr 21, 2024
1 parent dc4c43d commit 055267c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ From now on, we will gradually support it :dog:
- [flash.nvim](https://github.com/folke/flash.nvim)
- [fugitive.vim](https://github.com/tpope/vim-fugitive)
- [fzf.vim](https://github.com/junegunn/fzf.vim)
- [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)
- [lightline.vim](https://github.com/itchyny/lightline.vim)
- [null-ls.nvim](https://github.com/jose-elias-alvarez/null-ls.nvim)
- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
Expand Down
4 changes: 4 additions & 0 deletions colors/dogrun.vim
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@ hi FernBranchText guifg=#929be5 ctermfg=104 gui=NONE cterm=NONE
hi FernLeafSymbol guifg=#548e7c ctermfg=66 gui=NONE cterm=NONE
hi FernLeafText guifg=#9ea3c0 ctermfg=146 gui=NONE cterm=NONE
hi FernMarked guifg=#59b6b6 ctermfg=73 gui=NONE cterm=NONE
hi GitSignsAdd guifg=#7cbe8c ctermfg=108
hi GitSignsChange guifg=#a8a384 ctermfg=144
hi GitSignsDelete guifg=#b871b8 ctermfg=133
hi GitSignsChangeDelete guifg=#28795c ctermfg=29
hi GitGutterAdd guifg=#7cbe8c ctermfg=108
hi GitGutterChange guifg=#a8a384 ctermfg=144
hi GitGutterDelete guifg=#b871b8 ctermfg=133
Expand Down
6 changes: 6 additions & 0 deletions generator/src/highlight.rs
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,12 @@ pub fn get_highlights() -> Vec<Highlight> {
hi!("FernLeafSymbol", darkteal, -, -, None, -),
hi!("FernLeafText", mainfg, -, -, None, -),
hi!("FernMarked", cyan, -, -, None, -),
// gitsigns.nvim
// https://github.com/lewis6991/gitsigns.nvim
hi!("GitSignsAdd", green, -, -, -, -),
hi!("GitSignsChange", yellow, -, -, -, -),
hi!("GitSignsDelete", pink, -, -, -, -),
hi!("GitSignsChangeDelete", difftextbg, -, -, -, -),
// vim-gitgutter
// https://github.com/airblade/vim-gitgutter
hi!("GitGutterAdd", green, -, -, -, -),
Expand Down

0 comments on commit 055267c

Please sign in to comment.