This repository was archived by the owner on Apr 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
46 lines (35 loc) · 1.34 KB
/
wezterm.lua
File metadata and controls
46 lines (35 loc) · 1.34 KB
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
37
38
39
40
41
42
43
44
45
46
-- wezterm.lua
local wezterm = require 'wezterm'
local config = {}
-- In newer versions of wezterm, use the config_builder which will
-- help provide clearer error messages
if wezterm.config_builder then
config = wezterm.config_builder()
end
-- My config preferences
config.default_cwd = wezterm.home_dir -- doesn't do what you'd like to think
config.font = wezterm.font 'JetBrainsMonoNL Nerd Font Mono'
-- config.color_scheme = 'Solarized (dark) (terminal.sexy)'
-- config.color_scheme = 'Solarized Dark (Gogh)'
-- config.color_scheme = 'Solarized Dark Higher Contrast'
config.color_scheme = 'Solarized Dark Higher Contrast (Gogh)'
config.window_frame = {
-- The font used in the tab bar. Roboto Bold is the default; bundled with wezterm.
-- Whatever font is selected here, it will have the main font setting appended to it to pick
-- up any fallback fonts you may have used there.
font = wezterm.font { family = 'Roboto', weight = 'Regular' },
font_size = 10.0,
-- The tab bar when the window is focused
active_titlebar_bg = '#668066',
-- The tab bar when the window is not focused
-- Seems to only be 'focused' on click
inactive_titlebar_bg = '#668066',
}
config.colors = {
tab_bar = {
-- The color of the inactive tab bar edge/divider
inactive_tab_edge = '#578057',
},
}
-- return the configuration to wezterm
return config