-- Pull in the wezterm API local wezterm = require 'wezterm' -- This will hold the configuration. local config = wezterm.config_builder() config.enable_tab_bar= false config.window_background_opacity = 0.8 -- For example, changing the initial geometry for new windows: config.initial_cols = 150 config.initial_rows = 40 config.color_scheme_dirs = { '~/.config/iTerm2-Color-Schemes' } -- or, changing the font size and color scheme. config.font_size = 10 config.color_scheme = 'Ollie' -- Finally, return the configuration to wezterm: return config