snowflake/home/wezterm/config.lua

20 lines
520 B
Lua
Raw Normal View History

2023-11-14 21:40:30 -05:00
local wezterm = require 'wezterm'
return {
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',
2023-11-14 21:40:30 -05:00
2023-11-27 06:52:48 -05:00
window_padding = { top = 20, bottom = 20, left = 20, right = 20 }
2023-11-15 02:01:25 -05:00
}