Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.39 KB

CONTRIBUTING.md

File metadata and controls

49 lines (35 loc) · 1.39 KB

Contributing

This repository includes a GitHub Action that builds the colorschemes once a week. This keeps the colorschemes up-to-date automatically.

Building

Dependencies

Usage for template editing

  1. Install tinted-builder-rust
  2. tinted-builder-rust build path/to/tinted-vim

Usage for adding or editing a colorscheme

  1. Clone tinted-vim
  2. Install tinted-builder-rust
  3. Execute tinted-builder-rust build path/to/tinted-vim
tinted-builder-rust build /path/to/tinted-vim \
  --schemes-dir /path/to/tinted-schemes

If you have more questions about tinted-builder-rust, have a look at the information on the GitHub page.

Improving the highlights

  1. Check out the help :h tinted-vim for an overview of all the highlights.

  2. Use those mappings:

    command! -complete=highlight -nargs=1 HighlightHighlight execute 'highlight! link ' . <q-args> . ' Search'
    " See where a highlight is used.
    nn <leader>e :HighlightHighlight
    " Why does this element have this specific color?
    nn <silent><leader>i :Inspect<CR>
    " Reload colorscheme after changes to tinted-vim.
    nn <silent><leader>c :colorscheme base24-summerfruit-dark<cr>