forked from edrpls/chuck-dot-files
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
51 lines (49 loc) · 1.11 KB
/
wezterm.lua
File metadata and controls
51 lines (49 loc) · 1.11 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
47
48
49
50
51
local wezterm = require('wezterm')
return {
font = wezterm.font('Hasklug Nerd Font', { weight = 'Medium' }),
font_size = 14.0,
front_end = 'WebGpu',
color_scheme = 'Catppuccin Frappe',
line_height = 1.2,
underline_position = -7,
use_fancy_tab_bar = false,
hide_tab_bar_if_only_one_tab = true,
adjust_window_size_when_changing_font_size = false,
audible_bell = 'Disabled',
scrollback_lines = 10000,
window_decorations = 'RESIZE',
window_close_confirmation = 'NeverPrompt',
keys = {
{
key = 'n',
mods = 'SHIFT|CTRL',
action = 'ToggleFullScreen',
},
{
key = ' ',
mods = 'CTRL',
action = 'QuickSelect',
},
{
key = 'r',
mods = 'CMD',
action = 'ReloadConfiguration',
},
{
key = 'd',
mods = 'SHIFT|CTRL',
action = wezterm.action.DetachDomain('CurrentPaneDomain'),
},
-- Tab control
{
key = '{',
mods = 'SHIFT|CTRL',
action = wezterm.action.MoveTabRelative(-1),
},
{
key = '}',
mods = 'SHIFT|CTRL',
action = wezterm.action.MoveTabRelative(1),
},
},
}