17 lines
418 B
Lua
17 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
|