Skip to content

Instantly share code, notes, and snippets.

@carlRondoni
Created February 24, 2024 18:03
Show Gist options
  • Save carlRondoni/55ebc6e237f04a8c05082797d2833d83 to your computer and use it in GitHub Desktop.
Save carlRondoni/55ebc6e237f04a8c05082797d2833d83 to your computer and use it in GitHub Desktop.
Wezterm Config
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = {}
if wezterm_config_builder then
config = wezterm_config_builder()
end
config.font_size = 12.0
-- This is where you actually apply your config choices
config.window_background_opacity = 0.95
-- For example, changing the color scheme:
config.color_scheme = 'nord'
-- 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