generated from chezmoi/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_wezterm.lua
41 lines (35 loc) · 1.11 KB
/
dot_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
-- 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
-- This is where you actually apply your config choices
-- For example, changing the color scheme:
config.color_scheme = 'Brogrammer'
config.font = wezterm.font('Berkeley Mono')
config.harfbuzz_features = {'ss02'}
config.font_size = 13
config.hide_tab_bar_if_only_one_tab = true
config.initial_cols = 90
config.initial_rows = 30
front_end = "WebGpu"
-- config.force_reverse_video_cursor = true
-- config.freetype_load_target = "Light"
config.default_cursor_style = "SteadyBar"
config.hide_mouse_cursor_when_typing = true
-- window_decorations = "INTEGRATED_BUTTONS|RESIZE"
config.visual_bell = {
fade_in_function = 'EaseIn',
fade_in_duration_ms = 150,
fade_out_function = 'EaseOut',
fade_out_duration_ms = 150,
}
config.colors = {
visual_bell = '#202020',
}
-- and finally, return the configuration to wezterm
return config