Skip to content

Commit

Permalink
v1.4.1; add in some vim features.
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverseal committed Apr 27, 2021
1 parent 93061a1 commit 0c96917
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The structure for this is very closely based on the
[Soda Dark](https://github.com/buymeasoda/soda-theme).

## Updates
v1.4.1
- Add in some vim gutter and Coc support.

v1.4.0 Greyscale icons.
- Ages ago a PR came in for greyscale icons. Finally merged it in.

v1.3.0 Started icons.
- Just the basics. Mostly to get rid of that gross gap.

Expand Down
13 changes: 13 additions & 0 deletions Tech49.terminator
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[default]]
scrollbar_position = hidden
palette = "#263f45:#8a291b:#79815d:#c5cf8d:#9dc3bf:#7f548c:#60c6d8:#d1fefc:#396269:#fc674e:#b3bd93:#fcffc7:#c4fefd:#ad7fa8:#77c9d9:#f6f7e2"
background_image = None
background_darkness = 0.78
urgent_bell = True
background_type = transparent
use_system_font = False
foreground_color = "#9dc3bf"
show_titlebar = False
cursor_shape = ibeam
font = Ubuntu Mono 11
scrollback_infinite = True
25 changes: 21 additions & 4 deletions Tech49.vim
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,21 @@ hi pythonRailsRenderMethod ctermfg=116 ctermbg=NONE cterm=NONE guifg=#78cfde gui
hi pythonRailsMethod ctermfg=116 ctermbg=NONE cterm=NONE guifg=#78cfde guibg=NONE gui=italic


hi DiffAdd guifg=black guibg=#c4fefd gui=NONE
hi DiffChange guifg=black guibg=#fcffc7 gui=NONE
hi DiffDelete guifg=black guibg=#ff815a gui=NONE
hi DiffText guifg=black guibg=#fcffc7 gui=NONE
hi DiffAdd ctermfg=0 ctermbg=10 cterm=bold
hi DiffDelete ctermfg=0 ctermbg=9 cterm=NONE
hi DiffChange ctermfg=0 ctermbg=11 cterm=NONE
hi DiffText ctermfg=0 ctermbg=NONE cterm=bold
hi GitGutterAdd ctermfg=0 ctermbg=10 cterm=bold
hi GitGutterDelete ctermfg=0 ctermbg=9 cterm=NONE
hi GitGutterChange ctermfg=0 ctermbg=11 cterm=NONE
" hi DiffAdd ctermfg=152 ctermbg=64 cterm=bold guifg=#accecb guibg=#9ea485 gui=bold
" hi DiffDelete ctermfg=88 ctermbg=NONE cterm=NONE guifg=#830000 guibg=NONE gui=NONE
" hi DiffChange ctermfg=152 ctermbg=17 cterm=NONE guifg=#accecb guibg=#102544 gui=NONE
" hi DiffText ctermfg=152 ctermbg=24 cterm=bold guifg=#accecb guibg=#204a87 gui=bold
" hi DiffAdd guifg=black guibg=#c4fefd gui=NONE
" hi DiffChange guifg=black guibg=#fcffc7 gui=NONE
" hi DiffDelete guifg=black guibg=#ff815a gui=NONE
" hi DiffText guifg=black guibg=#fcffc7 gui=NONE

hi clear SignifyLineAdd
hi clear SignifyLineChange
Expand All @@ -157,3 +168,9 @@ hi PmenuSel guibg=#c4fefd guifg=#000000 gui=NONE
hi PmenuSBar guibg=#d1dbaf guifg=NONE gui=NONE
hi PmenuThumb guibg=#fefedb guifg=#000000 gui=NONE

" hi CocFloating guibg=#fcfcc7 guifg=#111514 gui=NONE
hi CocFloating ctermfg=NONE ctermbg=59 cterm=NONE guifg=#000000 guibg=#d1dbaf gui=NONE
hi CocErrorFloat ctermfg=88 ctermbg=NONE cterm=NONE guifg=#8a291b guibg=NONE gui=NONE
hi CocWarningFloat ctermfg=88 ctermbg=NONE cterm=NONE guifg=#8a291b guibg=NONE gui=NONE
hi CocInfoFloat ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
hi CocHintFloat ctermfg=88 ctermbg=NONE cterm=NONE guifg=#8a291b guibg=NONE gui=NONE

0 comments on commit 0c96917

Please sign in to comment.