Skip to content

yorumicolors/wezterm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yorumi Themes for WezTerm

image image
yorumi abyss yorumi mist
image image
yorumi shade yorumi kraken

Installation

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]

-- ...