
Installation from GitHub
-
Copy the
squirrelsong-dark.tomlto~/.config/wezterm/colors. -
Update your WezTerm config,
~/.wezterm.lua, so it looks something like this:
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
-- Colors
config.color_scheme = 'Squirrelsong Dark'
config.window_frame = {
-- Fancy tab bar
active_titlebar_bg = '#503f6e',
inactive_titlebar_bg = '#271e38',
}
-- Command Palette
config.command_palette_bg_color = "#503f6e"
config.command_palette_fg_color = "#bea3d9"
return config