-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
243 lines (233 loc) · 6.56 KB
/
wezterm.lua
File metadata and controls
243 lines (233 loc) · 6.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
-- https://mwop.net/blog/2024-07-04-how-i-use-wezterm.html
local wezterm = require 'wezterm'
local act = wezterm.action
local mux = wezterm.mux
local config = wezterm.config_builder()
-- Decide whether cmd represents a default startup invocation
function is_default_startup(cmd)
if not cmd then
-- we were started with `wezterm` or `wezterm start` with
-- no other arguments
return true
end
if cmd.domain == "DefaultDomain" and not cmd.args then
-- Launched via `wezterm start --cwd something`
return true
end
-- we were launched some other way
return false
end
--wezterm.on('gui-startup', function(cmd)
-- if is_default_startup(cmd) then
-- -- for the default startup case, we want to switch to the unix domain instead
-- local unix = mux.get_domain("unix")
-- mux.set_default_domain(unix)
-- -- ensure that it is attached
-- unix:attach()
-- end
--end)
config = {
automatically_reload_config = true,
default_cursor_style = 'BlinkingBlock',
-- WINDOW
-- Disable the title bar and border
window_decorations = 'RESIZE',
-- window_background_opacity = 0.95,
window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
},
scrollback_lines = 10000,
-- COLOR
-- color_scheme = 'Wryan',
-- color_scheme = 'JWR dark (terminal.sexy)',
-- color_scheme = 'FarSide (terminal.sexy)',
-- color_scheme = 'Kasugano (terminal.sexy)',
--
-- color_scheme = 'Grayscale (light) (terminal.sexy)',
-- color_scheme = 'Grayscale (dark) (terminal.sexy)',
-- color_scheme = 'Mono Theme (terminal.sexy)',
-- color_scheme = 'City Streets (terminal.sexy)',
-- color_scheme = 'Red Phoenix (terminal.sexy)',
color_scheme = 'Tomorrow Night Burns',
--
-- color_scheme = 'matrix',
-- color_scheme = 'Icy Dark (base16)',
-- color_scheme = 'Gotham (Gogh)',
-- TAB
-- Don't let any individual tab name take too much room
tab_max_width = 32,
-- Switch to the last active tab when I close a tab
switch_to_last_active_tab_when_closing_tab = true,
hide_tab_bar_if_only_one_tab = true,
-- enable_tab_bar = false,
-- MUX
unix_domains = {
{
name = 'unix',
},
},
default_gui_startup_args = { 'connect', 'unix' },
-- KEYMAP
leader = {
key = 'a',
mods = 'CTRL',
timeout_miliseconds = 2000,
},
keys = {
-- Send "CTRL-A" to the terminal when pressing CTRL-A, CTRL-A
{
key = 'a',
mods = 'LEADER|CTRL',
action = wezterm.action.SendKey { key = 'a', mods = 'CTRL' },
},
-- copy mode
{
key = '[',
mods = 'LEADER',
action = act.ActivateCopyMode,
},
-- search mode
{
key = '/',
mods = 'LEADER',
action = act.Search {
CaseSensitiveString="",
},
},
-- TAB
{
key = 'c',
mods = 'LEADER',
action = act.SpawnTab 'CurrentPaneDomain',
},
{
key = 'n',
mods = 'LEADER',
action = act.ActivateTabRelative(1),
},
{
key = 'p',
mods = 'LEADER',
action = act.ActivateTabRelative(-1),
},
{
key = ',',
mods = 'LEADER',
action = act.PromptInputLine {
description = 'Enter new name for tab',
action = wezterm.action_callback(
function(window, pane, line)
if line then
window:active_tab():set_title(line)
end
end
),
},
},
{
key = 'w',
mods = 'LEADER',
action = act.ShowTabNavigator,
},
{
key = '&',
mods = 'LEADER|SHIFT',
action = act.CloseCurrentTab{ confirm = true },
},
-- PANEL
{
key = 'z',
mods = 'LEADER',
action = act.TogglePaneZoomState,
},
{
key = '|',
mods = 'LEADER|SHIFT',
action = act.SplitPane {
direction = 'Right',
size = { Percent = 50 },
},
},
{
key = '-',
mods = 'LEADER',
action = act.SplitPane {
direction = 'Down',
size = { Percent = 50 },
},
},
{
key = ';',
mods = 'LEADER',
action = act.ActivatePaneDirection('Prev'),
},
{
key = 'o',
mods = 'LEADER',
action = act.ActivatePaneDirection('Next'),
},
{
key = 'h',
mods = 'LEADER',
action = act.ActivatePaneDirection('Left'),
},
{
key = 'j',
mods = 'LEADER',
action = act.ActivatePaneDirection('Down'),
},
{
key = 'k',
mods = 'LEADER',
action = act.ActivatePaneDirection('Up'),
},
{
key = 'l',
mods = 'LEADER',
action = act.ActivatePaneDirection('Right'),
},
{
key = '{',
mods = 'LEADER|SHIFT',
action = act.PaneSelect { mode = 'SwapWithActiveKeepFocus' }
},
-- WORKSPACE
{
key = 'a',
mods = 'LEADER',
action = act.AttachDomain 'unix',
},
{
key = 'd',
mods = 'LEADER',
action = act.DetachDomain { DomainName = 'unix' },
},
{
key = 's',
mods = 'LEADER',
action = act.ShowLauncherArgs { flags = 'WORKSPACES' },
},
{
key = '$',
mods = 'LEADER|SHIFT',
action = act.PromptInputLine {
description = 'Enter new name for session',
action = wezterm.action_callback(
function(window, pane, line)
if line then
mux.rename_workspace(
window:mux_window():get_workspace(),
line
)
end
end
),
},
},
},
}
return config
-- vim: set filetype=lua fileformat=unix foldmethod=indent