15 lines
550 B
Lua
15 lines
550 B
Lua
-- Pull in the wezterm API
|
|
local wezterm = require("wezterm")
|
|
|
|
-- This will hold the configuration.
|
|
local config = wezterm.config_builder()
|
|
|
|
-- This is where you actually apply your config choices
|
|
|
|
config.font = wezterm.font("MesloLGS Nerd Font Mono", { weight = "Regular", stretch = "Normal", style = "Normal" })
|
|
--config.font = wezterm.font("Spleen 32x64", { weight = "Medium", stretch = "Normal", style = "Normal" })
|
|
config.font_size = 16.0
|
|
|
|
config.window_background_opacity = 0.7
|
|
-- and finally, return the configuration to wezterm
|
|
return config
|