-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
25 lines (21 loc) · 759 Bytes
/
wezterm.lua
File metadata and controls
25 lines (21 loc) · 759 Bytes
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
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
-- https://alexplescan.com/posts/2024/08/10/wezterm/
config.font = wezterm.font({ family = 'Berkeley Mono' })
config.font_size = 13
config.color_scheme = 'ayu'
config.colors = {
background = '#020202'
}
-- Removes the title bar, leaving only the tab bar. Keeps
-- the ability to resize by dragging the window's edges.
-- On macOS, 'RESIZE|INTEGRATED_BUTTONS' also looks nice if
-- you want to keep the window controls visible and integrate
-- them into the tab bar.
config.window_decorations = 'RESIZE'
-- Sets the font for the window frame (tab bar)
config.window_frame = {
font = wezterm.font({ family = 'Berkeley Mono', weight = 'Bold' }),
font_size = 11,
}
return config