Skip to content

Instantly share code, notes, and snippets.

@ikashnitsky
Created April 2, 2026 07:35
Show Gist options
  • Select an option

  • Save ikashnitsky/31ed9fa581f29fc13f4cb51a2b532b59 to your computer and use it in GitHub Desktop.

Select an option

Save ikashnitsky/31ed9fa581f29fc13f4cb51a2b532b59 to your computer and use it in GitHub Desktop.
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices.
-- For example, changing the initial geometry for new windows:
config.initial_cols = 92
config.initial_rows = 30
-- or, changing the font size and color scheme.
config.font = wezterm.font { family = 'Fira Code', weight = 'Bold' }
config.font_size = 11
-- https://wezterm.org/colorschemes/index.html
-- config.color_scheme = 'Atelierlakeside (dark) (terminal.sexy)'
config.color_scheme = 'Gotham (terminal.sexy)'
-- config.color_scheme = 'Navy and Ivory (terminal.sexy)'
-- config.color_scheme = 'Aci (Gogh)'
-- config.color_scheme = 'Ayu Mirage (Gogh)'
-- config.color_scheme = 'Mellow Purple (base16)' -- +
-- config.color_scheme = 'Builtin Solarized Dark'
-- config.color_scheme = 'BlueDolphin'
-- config.color_scheme = 'Neon (terminal.sexy)'
-- config.color_scheme = 'BlueBerryPie'
-- config.color_scheme = 'Arthur'
-- config.color_scheme = 'Atelier Lakeside (base16)'
-- config.color_scheme = 'Atelier Sulphurpool (base16)'
-- config.color_scheme = 'Atlas (base16)'
-- config.color_scheme = 'Bim (Gogh)'
-- config.color_scheme = 'cyberpunk' -- +
-- config.color_scheme = 'Cobalt Neon'
-- config.color_scheme = 'Catppuccin Mocha'
-- config.color_scheme = 'duskfox'
-- config.color_scheme = 'Eldritch'
-- config.color_scheme = 'FirefoxDev'
-- config.color_scheme = 'ForestBlue'
-- config.color_scheme = 'Freya (Gogh)'
-- config.color_scheme = 'Galizur'
-- config.color_scheme = 'hardhacker'
-- config.color_scheme = 'jubi'
-- config.color_scheme = 'Ic Green Ppl (Gogh)' -- +
-- config.color_scheme = 'OceanicMaterial'
-- config.color_scheme = 'Materia (base16)'
-- config.color_scheme = 'Material (terminal.sexy
-- Finally, return the configuration to wezterm:
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment