
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 = '#4d3b2e',
inactive_titlebar_bg = '#292019',
}
-- Command Palette
config.command_palette_bg_color = "#4d3b2e"
config.command_palette_fg_color = "#bfac99"
return config