-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.wezterm.lua
36 lines (31 loc) · 870 Bytes
/
.wezterm.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- config.webgpu_power_preference = 'HighPerformance'
--
-- config.webgpu_preferred_adapter = {
-- backend = 'Vulcan',
-- device = 8712,
-- device_type = 'DiscreteGpu',
-- driver = 'NVIDIA',
-- driver_info = '55.58.02',
-- name = 'NVIDIA GeForce RTX 3080 Ti',
-- vendor = 4318,
-- }
-- config.front_end = 'WebGpu'
config.front_end = 'OpenGL'
-- For example, changing the color scheme:
config.color_scheme = 'Gruvbox Dark (Gogh)'
config.colors = {
background = 'black',
tab_bar = {
inactive_tab_edge = '#222222',
},
}
config.window_frame = {
active_titlebar_bg = '#151515',
inactive_titlebar_bg = 'black',
}
-- and finally, return the configuration to wezterm
return config-- Pull in the wezterm API