a duotonic color scheme

Compare changes

Choose any two refs to compare.

Changed files
+25 -11
colors
+10 -7
colors/plain.vim
··· 160 160 call s:h("ErrorMsg", {"fg": s:pink}) 161 161 call s:h("IncSearch", {"bg": s:selection, "fg": s:black}) 162 162 call s:h("Search", {"bg": s:selection, "fg": s:black}) 163 + call s:h("CurSearch", {"bg": s:selection, "fg": s:black}) 163 164 call s:h("MoreMsg", {"fg": s:medium_gray, "cterm": "bold", "gui": "bold"}) 164 165 hi! link ModeMsg MoreMsg 165 166 call s:h("LineNr", {"fg": s:medium_gray}) ··· 191 192 call s:h("SpellLocal", {"cterm": "underline", "fg": s:dark_green}) 192 193 endif 193 194 194 - """ Help 195 - hi link helpHyperTextEntry Title 196 - hi link helpHyperTextJump String 197 - 198 195 """ StatusLine 199 - 200 196 call s:h("StatusLine", {"fg": s:status_line}) 201 197 call s:h("StatusLineNC", {"fg": s:status_line_nc}) 202 198 ··· 357 353 hi link sqlSpecial firstAccent 358 354 hi link sqlKeyword secondAccent 359 355 360 - hi link helpExample Noise 356 + hi link helpExample Normal 361 357 hi link helpCommand secondAccent 362 358 hi link helpBacktick secondAccent 363 - hi link helpSpecial Noise 359 + hi link helpSpecial Normal 360 + hi link helpUrl secondAccent 361 + hi link helpHyperTextEntry Title 362 + hi link helpHyperTextJump String 363 + 364 364 365 365 hi link StorageClass Statement 366 366 ··· 393 393 hi link LeapLabelPrimary Normal 394 394 hi link LeapLabelSecondary Normal 395 395 hi link LeapBackdrop Noise 396 + 397 + " lsp ui 398 + hi link FloatBorder Noise
+15 -4
readme.md
··· 1 - ![img](https://u.peppe.rs/bt.png) 1 + ![img](https://cdn.oppi.li/bt.png) 2 2 3 3 vim-colors-plain is a duotonic color scheme, the two accents 4 4 being cyan and pink by default (configurable). 5 5 6 - vim-plug does not support installing plugins from sources 7 - that do not allow shallow clones (such as git.peppe.rs), i 8 - would suggesting installing manually by cloning into your 6 + i would suggesting installing manually by cloning into your 9 7 plugin directory or dropping `colors/plain.vim` into one of 10 8 the following directories: 11 9 ··· 15 13 if you use nix/nixos, this repository provides a vim plugin 16 14 as a flake output, that you can import via 17 15 `builtins.getFlake`. 16 + 17 + ``` 18 + vim-colors-plain = { 19 + url = "github:oppiliappan/vim-colors-plain"; 20 + inputs.nixpkgs.follows = "nixpkgs"; 21 + }; 22 + 23 + . 24 + . 25 + . 26 + 27 + programs.neovim.plugins = [ pkgs.vim-colors-plain ]; 28 + ```