-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
30 lines (24 loc) · 823 Bytes
/
Copy pathwezterm.lua
File metadata and controls
30 lines (24 loc) · 823 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
26
27
28
29
30
-- Pull in the wezterm API
local wezterm = require("wezterm")
-- This table will hold the configuration.
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
config.color_scheme = "Catppuccin Macchiato"
-- config.color_scheme = "Dracula+"
config.font_size = 19.0
config.font = wezterm.font_with_fallback({
"JetBrains Mono",
{ family = "Iosevka Term Slab", stretch = "Expanded", weight = "ExtraLight" },
"Noto Color Emoji",
})
config.scrollback_lines = 200000
config.tab_max_width = 24
config.use_dead_keys = false
config.window_decorations = "RESIZE" -- no title bar
config.window_background_opacity = 0.95
-- and finally, return the configuration to wezterm
return config