snowflake/home/programs/wezterm/config.lua

22 lines
502 B
Lua
Raw Normal View History

2024-02-01 13:26:32 -05:00
local wezterm = require("wezterm")
2024-01-02 00:08:45 -05:00
local config = {
2023-11-14 21:40:30 -05:00
2024-02-01 13:26:32 -05:00
front_end = "WebGpu",
webgpu_preferred_adapter = {
backend = "Vulkan",
device_type = "DiscreteGpu",
name = "NVIDIA GeForce GTX 1070 Ti",
},
enable_wayland = false,
2024-02-05 10:03:05 -05:00
font = wezterm.font("JetBrainsMono NF Medium"),
2024-02-01 13:26:32 -05:00
font_size = 12.0,
window_background_opacity = 0.6,
text_background_opacity = 1.0,
enable_tab_bar = false,
color_scheme = "tokyonight",
window_padding = { top = 20, bottom = 20, left = 20, right = 20 },
2023-11-15 02:01:25 -05:00
}
2024-01-02 00:08:45 -05:00
return config