2024-01-02 00:08:45 -05:00
|
|
|
local wezterm = require('wezterm')
|
|
|
|
|
|
|
|
local config = {
|
2023-11-14 21:40:30 -05:00
|
|
|
|
|
|
|
front_end = "WebGpu",
|
|
|
|
webgpu_preferred_adapter = {
|
|
|
|
backend = "Vulkan",
|
|
|
|
device_type = "DiscreteGpu",
|
|
|
|
name = "NVIDIA GeForce GTX 1070 Ti"
|
|
|
|
},
|
|
|
|
enable_wayland = false,
|
2023-11-15 05:47:06 -05:00
|
|
|
font = wezterm.font 'Monaspace Krypton',
|
2023-11-14 21:40:30 -05:00
|
|
|
font_size = 12.0,
|
|
|
|
window_background_opacity = 0.6,
|
|
|
|
text_background_opacity = 1.0,
|
|
|
|
enable_tab_bar = false,
|
2023-11-15 05:47:06 -05:00
|
|
|
color_scheme = 'tokyonight',
|
2024-01-24 05:15:12 -05:00
|
|
|
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
|