Skip to content

Latest commit

 

History

History
76 lines (54 loc) · 1.84 KB

File metadata and controls

76 lines (54 loc) · 1.84 KB

Tinted Kakoune

This template maps Tinted Theming Base16, Base24 and Tinted8 schemes to Kakoune colorschemes.

Have a look at the gallery page for examples of what the themes look like.

Installation

plug "tinted-theming/tinted8-kakoune" theme config %{
    colorscheme base16-ayu-dark
}

Manual

Move colors/*.kak files into $HOME/.config/kak/colors or create a symlink of colors directory. It's recommeded that you symlink the colors directory, so that you can update the colors by simply doing a git pull in your local copy of tinted-kakoune

Move files

cd $HOME/.config/kak
git clone https://github.com/tinted-theming/tinted-kakoune.git
if [ ! -d "./colors" ]; then mkdir "colors"; fi
cp ./tinted-kakoune/colors/* ./colors
rm -rf ./tinted-kakoune

Symlink method

cd $HOME/.config
git clone https://github.com/tinted-theming/tinted-kakoune.git
ln -s $HOME/.config/tinted-kakoune/colors $HOME/.config/kak/colors

And to update the themes:

cd $HOME/.config/tinted-kakoune && git pull

Usage

Manual

In command mode, change the colorscheme in Kakoune by typing colorscheme base16- and an autocomplete list of the colorschemes should appear.

tinted-shell

For usage with tinted-shell, add the following to your kakrc file and your theme will update whenever you update your theme via tinted-shell.

evaluate-commands %sh{
  echo "colorscheme base16-$BASE16_THEME"
}

Contributing

See CONTRIBUTING.md, which contains building and contributing instructions.