-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.wezterm.lua
51 lines (48 loc) · 1019 Bytes
/
.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
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This table will hold the configuration.
-- Use config_builder for clearer error messages.
local config = wezterm.config_builder()
config.colors = {
foreground = '#f1f1f1'
}
config.font = wezterm.font_with_fallback { 'JetBrains Mono', 'Apple Color Emoji' }
config.font_size = 14.0
config.initial_rows = 35
config.initial_cols = 90
config.enable_scroll_bar = true
config.keys = {
{
key = 'Backspace',
mods = 'CMD',
action = wezterm.action.SendKey {
key = 'u',
mods = 'CTRL'
},
},
{
key = 'Backspace',
mods = 'OPT',
action = wezterm.action.SendKey {
key = 'Backspace',
mods = 'CTRL'
},
},
{
key = 'LeftArrow',
mods = 'CMD',
action = wezterm.action.SendKey {
key = 'LeftArrow',
mods = 'SHIFT'
},
},
{
key = 'RightArrow',
mods = 'CMD',
action = wezterm.action.SendKey {
key = 'RightArrow',
mods = 'SHIFT'
},
},
}
return config