snowflake/home/programs/terminal/wezterm/config.lua
notohh 72091c2542
flake.nix: disable wezterm flake
nix: disable wezterm overlay

wezterm: disable wayland
2024-08-12 03:47:11 -04:00

23 lines
562 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 = false,
font = wezterm.font_with_fallback({ "JetBrainsMono NF Medium", "Comic Code Ligatures 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