Skip to content

Commit

Permalink
v12 - KillLaKill Alt. Themes & Only for Onii-chan (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Unthrottled authored Sep 28, 2021
1 parent db50308 commit f1ef4c0
Show file tree
Hide file tree
Showing 219 changed files with 5,111 additions and 1,189 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,39 @@
Changelog
---

# 12.0.0 [KillLaKill Alt. Themes & Only for Onii-Chan]

## KillLaKill Alt. Themes

**2 New Themes!**

- Ryuko Light
- Satsuki Dark

![v19 Girls](https://doki.assets.unthrottled.io/misc/v19_girls.png)

---

## Only for Onii-Chan

**3 New Themes!**

Last addition from the NekoPara Series:

- Minaduki Shigure (Light Theme)

From the dumpster fire of a series, "EroManga Sensei":

- Izumi Sagiri (Dark Theme)

From the smaller burning trash heap, "OreImo (My little sister cannot be this cute)":

- Kousaka Kirino (Dark Theme)

Anime is trash...._and so am I_.

![v20 Girls](https://doki.assets.unthrottled.io/misc/v20_girls.png)

# 11.0.0 [NekoPara OneeSan Vol.]

## 4 New Themes!!
Expand Down
20 changes: 10 additions & 10 deletions after/plugin/ryuko.vim → after/plugin/kirino.vim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if ryuko#should_abort()
if kirino#should_abort()
finish
endif

Expand All @@ -10,10 +10,10 @@ if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'RyukoParameter'],
\ 'info': ['fg', 'RyukoConstants'],
\ 'hl+': ['fg', 'KirinoParameter'],
\ 'info': ['fg', 'KirinoConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'RyukoClassName'],
\ 'prompt': ['fg', 'KirinoClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
Expand All @@ -23,13 +23,13 @@ endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError RyukoErrorLine
hi! link ALEWarning RyukoWarnLine
hi! link ALEInfo RyukoInfoLine
hi! link ALEError KirinoErrorLine
hi! link ALEWarning KirinoWarnLine
hi! link ALEInfo KirinoInfoLine

hi! link ALEErrorSign RyukoRed
hi! link ALEWarningSign RyukoParameter
hi! link ALEInfoSign RyukoKeyColor
hi! link ALEErrorSign KirinoRed
hi! link ALEWarningSign KirinoParameter
hi! link ALEInfoSign KirinoKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
Expand Down
45 changes: 45 additions & 0 deletions after/plugin/ryuko_dark.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
if ryuko_dark#should_abort()
finish
endif

" Fzf:
if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'RyukoDarkParameter'],
\ 'info': ['fg', 'RyukoDarkConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'RyukoDarkClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'],
\}
endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError RyukoDarkErrorLine
hi! link ALEWarning RyukoDarkWarnLine
hi! link ALEInfo RyukoDarkInfoLine

hi! link ALEErrorSign RyukoDarkRed
hi! link ALEWarningSign RyukoDarkParameter
hi! link ALEInfoSign RyukoDarkKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
endif
" }}}
" CtrlP:
if exists('g:loaded_ctrlp')
hi! link CtrlPMatch IncSearch
hi! link CtrlPBufferHid Normal
endif
" }}}

" vim: fdm=marker ts=2 sts=2 sw=2 fdl=0:
45 changes: 45 additions & 0 deletions after/plugin/ryuko_light.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
if ryuko_light#should_abort()
finish
endif

" Fzf:
if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'RyukoLightParameter'],
\ 'info': ['fg', 'RyukoLightConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'RyukoLightClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'],
\}
endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError RyukoLightErrorLine
hi! link ALEWarning RyukoLightWarnLine
hi! link ALEInfo RyukoLightInfoLine

hi! link ALEErrorSign RyukoLightRed
hi! link ALEWarningSign RyukoLightParameter
hi! link ALEInfoSign RyukoLightKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
endif
" }}}
" CtrlP:
if exists('g:loaded_ctrlp')
hi! link CtrlPMatch IncSearch
hi! link CtrlPBufferHid Normal
endif
" }}}

" vim: fdm=marker ts=2 sts=2 sw=2 fdl=0:
20 changes: 10 additions & 10 deletions after/plugin/satsuki.vim → after/plugin/sagiri.vim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if satsuki#should_abort()
if sagiri#should_abort()
finish
endif

Expand All @@ -10,10 +10,10 @@ if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'SatsukiParameter'],
\ 'info': ['fg', 'SatsukiConstants'],
\ 'hl+': ['fg', 'SagiriParameter'],
\ 'info': ['fg', 'SagiriConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'SatsukiClassName'],
\ 'prompt': ['fg', 'SagiriClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
Expand All @@ -23,13 +23,13 @@ endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError SatsukiErrorLine
hi! link ALEWarning SatsukiWarnLine
hi! link ALEInfo SatsukiInfoLine
hi! link ALEError SagiriErrorLine
hi! link ALEWarning SagiriWarnLine
hi! link ALEInfo SagiriInfoLine

hi! link ALEErrorSign SatsukiRed
hi! link ALEWarningSign SatsukiParameter
hi! link ALEInfoSign SatsukiKeyColor
hi! link ALEErrorSign SagiriRed
hi! link ALEWarningSign SagiriParameter
hi! link ALEInfoSign SagiriKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
Expand Down
45 changes: 45 additions & 0 deletions after/plugin/satsuki_dark.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
if satsuki_dark#should_abort()
finish
endif

" Fzf:
if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'SatsukiDarkParameter'],
\ 'info': ['fg', 'SatsukiDarkConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'SatsukiDarkClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'],
\}
endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError SatsukiDarkErrorLine
hi! link ALEWarning SatsukiDarkWarnLine
hi! link ALEInfo SatsukiDarkInfoLine

hi! link ALEErrorSign SatsukiDarkRed
hi! link ALEWarningSign SatsukiDarkParameter
hi! link ALEInfoSign SatsukiDarkKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
endif
" }}}
" CtrlP:
if exists('g:loaded_ctrlp')
hi! link CtrlPMatch IncSearch
hi! link CtrlPBufferHid Normal
endif
" }}}

" vim: fdm=marker ts=2 sts=2 sw=2 fdl=0:
45 changes: 45 additions & 0 deletions after/plugin/satsuki_light.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
if satsuki_light#should_abort()
finish
endif

" Fzf:
if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'SatsukiLightParameter'],
\ 'info': ['fg', 'SatsukiLightConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'SatsukiLightClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'],
\}
endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError SatsukiLightErrorLine
hi! link ALEWarning SatsukiLightWarnLine
hi! link ALEInfo SatsukiLightInfoLine

hi! link ALEErrorSign SatsukiLightRed
hi! link ALEWarningSign SatsukiLightParameter
hi! link ALEInfoSign SatsukiLightKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
endif
" }}}
" CtrlP:
if exists('g:loaded_ctrlp')
hi! link CtrlPMatch IncSearch
hi! link CtrlPBufferHid Normal
endif
" }}}

" vim: fdm=marker ts=2 sts=2 sw=2 fdl=0:
45 changes: 45 additions & 0 deletions after/plugin/shigure.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
if shigure#should_abort()
finish
endif

" Fzf:
if exists('g:loaded_fzf') && ! exists('g:fzf_colors')
let g:fzf_colors = {
\ 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Search'],
\ 'fg+': ['fg', 'Normal'],
\ 'bg+': ['bg', 'Normal'],
\ 'hl+': ['fg', 'ShigureParameter'],
\ 'info': ['fg', 'ShigureConstants'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'ShigureClassName'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'],
\}
endif
"}}}
" ALE:
if exists('g:ale_enabled')
hi! link ALEError ShigureErrorLine
hi! link ALEWarning ShigureWarnLine
hi! link ALEInfo ShigureInfoLine

hi! link ALEErrorSign ShigureRed
hi! link ALEWarningSign ShigureParameter
hi! link ALEInfoSign ShigureKeyColor

hi! link ALEVirtualTextError Comment
hi! link ALEVirtualTextWarning Comment
endif
" }}}
" CtrlP:
if exists('g:loaded_ctrlp')
hi! link CtrlPMatch IncSearch
hi! link CtrlPBufferHid Normal
endif
" }}}

" vim: fdm=marker ts=2 sts=2 sw=2 fdl=0:
15 changes: 15 additions & 0 deletions after/syntax/kirino_css.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if kirino#should_abort('css')
finish
endif

hi! link cssAttrComma Delimiter
hi! link cssAttrRegion KirinoKeyword
hi! link cssAttributeSelector KirinoClassNameItalic
hi! link cssBraces Delimiter
hi! link cssFunctionComma Delimiter
hi! link cssNoise KirinoKeyword
hi! link cssProp KirinoKeyColor
hi! link cssPseudoClass KirinoKeyword
hi! link cssPseudoClassId KirinoClassNameItalic
hi! link cssUnitDecorators KirinoKeyword
hi! link cssVendor KirinoClassNameItalic
12 changes: 12 additions & 0 deletions after/syntax/kirino_gitcommit.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
if kirino#should_abort('gitcommit')
finish
endif

" The following two are misnomers. Colors are correct.
hi! link diffFile KirinoClassName
hi! link diffNewFile KirinoRed

hi! link diffAdded KirinoClassName
hi! link diffLine KirinoKeyColorItalic
hi! link diffRemoved KirinoRed

9 changes: 9 additions & 0 deletions after/syntax/kirino_html.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
if kirino#should_abort('html')
finish
endif

hi! link htmlTag KirinoFg
hi! link htmlArg KirinoClassNameItalic
hi! link htmlTitle KirinoFg
hi! link htmlH1 KirinoFg
hi! link htmlSpecialChar KirinoConstants
Loading

0 comments on commit f1ef4c0

Please sign in to comment.