Last active
September 11, 2023 21:27
-
-
Save kaskajp/eb6b095b2e35a6cd0fcbf0f8d629176c to your computer and use it in GitHub Desktop.
WezTerm config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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