obos-iso/releng/airootfs/etc/skel/.wezterm.lua
2023-08-08 03:48:32 -06:00

16 lines
418 B
Lua

-- 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
-- window decorations
config.color_scheme = 'Catppuccin Mocha'
config.window_background_opacity = .96
return config