Skip to content

Instantly share code, notes, and snippets.

@kaskajp
Last active September 11, 2023 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaskajp/eb6b095b2e35a6cd0fcbf0f8d629176c to your computer and use it in GitHub Desktop.
Save kaskajp/eb6b095b2e35a6cd0fcbf0f8d629176c to your computer and use it in GitHub Desktop.
WezTerm config
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This table will hold the configuration.
local config = {}
-- In newer versions of wezterm, use the config_builder which will
-- help provide clearer error messages
if wezterm.config_builder then
config = wezterm.config_builder()
end
-- Colors:
config.color_scheme = 'Rosé Pine (Gogh)'
-- Font
config.font_size = 14
config.font =
wezterm.font('Sometype Mono', { weight = 'Bold' })
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment