-- Pull in the wezterm API local wezterm = require 'wezterm' -- This will hold the configuration. local config = wezterm.config_builder() -- Make sure you can type # on the UK Mac keyboard layout config.send_composed_key_when_left_alt_is_pressed = true -- Keep the app around when no windows are open config.quit_when_all_windows_are_closed = false -- and finally, return the configuration to wezterm return config