-
Notifications
You must be signed in to change notification settings - Fork 5
/
wezterm.lua
57 lines (44 loc) · 1.19 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
-- 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
-- Updates
config.check_for_updates = true
config.check_for_updates_interval_seconds = 604800 -- 7 days
-- Performance
config.webgpu_power_preference = "HighPerformance"
config.front_end = "WebGpu"
-- UI
config.enable_tab_bar = false
config.enable_scroll_bar = false
config.use_fancy_tab_bar = false
-- Appearance
--config.color_scheme = "tokyonight_storm"
config.color_scheme = "Catppuccin Frappe"
--config.color_scheme = "purplepeter"
-- Fonts
config.font = wezterm.font("JuliaMono Nerd Font Mono")
config.font_size = 14
config.anti_alias_custom_block_glyphs = true
-- Notifications
config.audible_bell = "Disabled"
-- Window
config.window_close_confirmation = "AlwaysPrompt"
config.window_padding = {
left = 2,
right = 2,
top = 2,
bottom = 2,
}
config.default_cursor_style = "SteadyBlock"
config.colors = {
cursor_bg = "#A868AD",
cursor_fg = "white",
cursor_border = "#A868AD",
}
return config