snowflake/home/programs/terminal/wezterm/config.lua
notohh 082de10236
flake.lock: update
nushell: update config

wezterm: add fallback font

ame: remove chatterino

tsuki: add lutris

forgejo: update mailer pwd

attic: increase retention period

passgen: bump version
2024-06-17 04:50:19 -04:00

23 lines
554 B
Lua

local wezterm = require("wezterm")
local config = {
front_end = "WebGpu",
webgpu_preferred_adapter = {
backend = "Vulkan",
device_type = "DiscreteGpu",
name = "AMD Radeon RX 6750 XT (RADV NAVI22)",
},
color_scheme = "Tokyo Night",
enable_wayland = true,
font = wezterm.font_with_fallback({ "Comic Code Ligatures", "JetBrainsMono NF Medium" }),
font_size = 12.0,
window_background_opacity = 0.6,
text_background_opacity = 1.0,
enable_tab_bar = false,
window_padding = { top = 20, bottom = 20, left = 20, right = 20 },
}
return config