14 lines
253 B
Lua
14 lines
253 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
local config = wezterm.config_builder()
|
|
|
|
-- Theme
|
|
config.color_scheme = "CutiePro"
|
|
|
|
-- FONT
|
|
config.font = wezterm.font 'JetBrains Mono'
|
|
|
|
-- Transparenz
|
|
config.window_background_opacity = 0.5
|
|
|
|
return config |