![]() |
![]() |
---|---|
yorumi abyss | yorumi mist |
![]() |
![]() |
yorumi shade | yorumi kraken |
Download the themes into your colors directory. This is normally ~/.config/wezterm/colors
directory on a POSIX system.
curl -L -o /tmp/yorumi-abyss https://raw.githubusercontent.com/yorumicolors/wezterm/refs/heads/main/yorumi-abyss.toml
curl -L -o /tmp/yorumi-mist https://raw.githubusercontent.com/yorumicolors/wezterm/refs/heads/main/yorumi-mist.toml
curl -L -o /tmp/yorumi-shade https://raw.githubusercontent.com/yorumicolors/wezterm/refs/heads/main/yorumi-shade.toml
curl -L -o /tmp/yorumi-kraken https://raw.githubusercontent.com/yorumicolors/wezterm/refs/heads/main/yorumi-kraken.toml
mkdir -p $HOME/.config/wezterm/themes
mv /tmp/yorumi-{abyss,mist,shade,kraken} $HOME/.config/wezterm/colors
You can then simply set the colorscheme on your .wezterm.lua
as
local wezterm = require('wezterm')
local config = wezterm.config_builder()
-- ...
-- Optionally: config.color_scheme_dirs = { '/.../.config/wezterm/colors/' }
config.color_scheme = 'Yorumi Mist' -- Options: Yorumi-[Mist|Abyss|Kraken|Shade]
-- ...