Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgechato/vim-youcolor
a low-key, adjustable colorscheme for vim
https://github.com/jorgechato/vim-youcolor
color-scheme colorscheme public vim
Last synced: 27 days ago
JSON representation
a low-key, adjustable colorscheme for vim
- Host: GitHub
- URL: https://github.com/jorgechato/vim-youcolor
- Owner: jorgechato
- License: isc
- Created: 2017-01-16T12:19:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-13T08:19:28.000Z (almost 8 years ago)
- Last Synced: 2024-11-07T10:45:45.584Z (3 months ago)
- Topics: color-scheme, colorscheme, public, vim
- Language: Vim script
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Youcolor
Vim-youcolor is a low-key vim colorscheme with an adjustable color palette for cterm color set, which
allows you to easily match it with your terminal's theme.
It is based on [sprinkles](https://github.com/ajgrf/sprinkles). I strongly recommend to check that project out.## Installation
Vim-youcolor can be installed in the same way as most other vim plugins and
colorscheme. If you don't know how to install vim plugins, I recommend
installing youcolor using Vundle.```vim
Plugin 'orggue/vim-youcolor'
```## Configuration
You can define a custom color palette for youcolor to use, with the caveats
described above. Just define the variable `g:youcolor_palette` in your vimrc:```vim
let g:youcolor_palette = {
\'text': '16',
\'background': '231',
\'black': '16', 'dark_grey': '16',
\'red': '160', 'bright_red': '196',
\'green': '28', 'bright_green': '28',
\'yellow': '178', 'bright_yellow': '221',
\'blue': '31', 'bright_blue': '24',
\'magenta': '161', 'bright_magenta': '139',
\'cyan': '30', 'bright_cyan': '80',
\'white': '188', 'bright_white': '231',
\'grey': '244', 'bright_grey': '244',
\'lightgrey': '253',
\}
colorscheme youcolor
```