-- Pull in the wezterm API local wezterm = require 'wezterm' -- This will hold the configuration local config = wezterm.config_builder() -- This is where you apply config settings config.window_background_opacity = 0.7 -- Font settings --config.font_size = 12 config.color_scheme = 'Eldritch' -- Return the config to wezterm return config