Skip to content

Instantly share code, notes, and snippets.

@webdevsuperfast
Created November 13, 2023 07:40
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 webdevsuperfast/12eadf108065d79c8897b74363410291 to your computer and use it in GitHub Desktop.
Save webdevsuperfast/12eadf108065d79c8897b74363410291 to your computer and use it in GitHub Desktop.
WezTerm configuration
-- 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
-- This is where you actually apply your config choices
-- For example, changing the color scheme:
config.color_scheme = 'Cobalt2'
-- Fonts
config.font = wezterm.font 'Maple Mono'
config.font_size = 18.0
-- Window Columns & Rows
config.initial_cols = 130
config.initial_rows = 35
-- and 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