-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.kdl
395 lines (343 loc) · 13.1 KB
/
config.kdl
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
plugins {
tab-bar location="zellij:tab-bar"
tab-finder location="https://github.com/rvcas/room/releases/download/v1.0.0/room.wasm" {
floating true
ignore_case true
}
// status-bar location="zellij:status-bar"
status-bar location="https://github.com/dj95/zjstatus/releases/download/v0.14.1/zjstatus.wasm" {
format_left "{tabs}"
format_right "#[fg=#89B4FA,bold]{session} | {mode} "
// format_center "{tabs}"
// format_right "{command_git_branch} {datetime}"
// format_right "{datetime}"
format_space ""
border_enabled "true"
border_char "─"
border_format "#[fg=#6C7086]{char}"
border_position "bottom"
hide_frame_for_single_pane "false"
mode_normal "#[fg=green,bold]{name}"
mode_locked "#[fg=orange,bold]{name}"
// formatting for inactive tabs
tab_normal "#[fg=#6C7086] [{index}] {name} "
tab_normal_fullscreen "#[fg=#6C7086] [{index}] {name} [] "
tab_normal_sync "#[fg=#6C7086] [{index}] {name} <> "
// formatting for the current active tab
tab_active "#[fg=#9399B2,bold] [{index}] {name} {floating_indicator}"
tab_active_fullscreen "#[fg=#9399B2,bold] [{index}] {name} {fullscreen_indicator}"
tab_active_sync "#[fg=#9399B2,bold] [{index}] {name} {sync_indicator}"
// separator between the tabs
tab_separator "#[fg=#6C7086,bg=#181825] | "
// indicators
tab_sync_indicator "<> "
tab_fullscreen_indicator "[] "
tab_floating_indicator "⬚ "
// command_git_branch_command "git rev-parse --abbrev-ref HEAD"
// command_git_branch_format "#[fg=blue] {stdout} "
// command_git_branch_interval "10"
// command_git_branch_rendermode "static"
// datetime "#[fg=#6C7086,bold] {format} "
// datetime_format "%A, %d %b %Y %H:%M"
// datetime_timezone "America/Chicago"
}
strider location="zellij:strider"
compact-bar location="zellij:compact-bar"
session-manager location="zellij:session-manager"
welcome-screen location="zellij:session-manager" {
welcome_screen true
}
filepicker location="zellij:strider" {
cwd "/"
}
forgot-plugin location="https://github.com/karimould/zellij-forgot/releases/download/0.4.0/zellij_forgot.wasm" {
"LOAD_ZELLIJ_BINDINGS" "true"
floating true
}
// autolock location="https://github.com/fresh2dev/zellij-autolock/releases/download/0.1.0.a5/zellij-autolock.wasm" {
autolock location="file:$HOME/sync/projects/zellij-autolock/target/wasm32-wasi/release/zellij-autolock.wasm" {
triggers "nvim" // Lock when any open these programs open. They are expected to unlock themselves when closed (e.g., using zellij.vim plugin).
watch_triggers "vim|fzf|zoxide|atuin" // Lock when any of these open and monitor until closed. I haven't assessed how "expensive" this is.
watch_interval "1.0" // When monitoring, check every X seconds.
}
}
// If you'd like to override the default keybindings completely, be sure to change "keybinds" to "keybinds clear-defaults=true"
keybinds clear-defaults=true {
normal {
// https://www.physics.udel.edu/~watson/scen103/ascii.html
bind "Enter" {
WriteChars "\u{000D}"; // Passthru `Enter`
MessagePlugin "autolock" {}; // Activate the autolock plugin.
}
bind "Ctrl r" { // `Ctrl+r` is for shell history, e.g., `fzf` or `atuin`.
WriteChars "\u{0012}"; // Passthru `Ctrl+r`
MessagePlugin "autolock" {}; // Activate the autolock plugin.
}
}
locked {
bind "Alt z" { SwitchToMode "Normal"; }
}
entersearch {
bind "Enter" { SwitchToMode "Search"; }
}
search {
bind "Enter" { SwitchToMode "Normal"; }
bind "Esc" { ScrollToBottom; SwitchToMode "Normal"; }
bind "e" { EditScrollback; SwitchToMode "Normal"; }
bind "j" "Down" { ScrollDown; }
bind "k" "Up" { ScrollUp; }
bind "d" { HalfPageScrollDown; }
bind "u" { HalfPageScrollUp; }
bind "n" { Search "down"; }
bind "p" { Search "up"; }
bind "c" { SearchToggleOption "CaseSensitivity"; }
bind "w" { SearchToggleOption "Wrap"; }
bind "o" { SearchToggleOption "WholeWord"; }
}
scroll {
bind "Esc" { ScrollToBottom; SwitchToMode "Normal"; }
bind "Enter" { SwitchToMode "Normal"; }
bind "e" { EditScrollback; SwitchToMode "Normal"; }
bind "s" { SwitchToMode "EnterSearch"; SearchInput 0; }
bind "j" "Down" { ScrollDown; }
bind "k" "Up" { ScrollUp; }
bind "d" { HalfPageScrollDown; }
bind "u" { HalfPageScrollUp; }
bind "f" { PageScrollDown; }
bind "b" { PageScrollUp; }
// uncomment this and adjust key if using copy_on_select=false
// bind "Alt c" { Copy; }
}
resize {
bind "Esc" "Enter" { SwitchToMode "Normal"; }
bind "h" "Left" { Resize "Left"; }
bind "j" "Down" { Resize "Down"; }
bind "k" "Up" { Resize "Up"; }
bind "l" "Right" { Resize "Right"; }
bind "=" "+" { Resize "Increase"; }
bind "-" { Resize "Decrease"; }
}
shared {
bind "Alt r" { SwitchToMode "Resize"; }
bind "Alt o" { NextSwapLayout; }
bind "Alt p" {
LaunchOrFocusPlugin "forgot-plugin"
}
//bind "Alt h" { MovePane "Left"; }
//bind "Alt j" { MovePane "Down"; }
//bind "Alt k" { MovePane "Up"; }
//bind "Alt l" { MovePane "Right"; }
bind "Alt n" {
NewTab {
layout "default"
}
}
bind "Alt 1" { GoToTab 1; SwitchToMode "Normal"; }
bind "Alt 2" { GoToTab 2; SwitchToMode "Normal"; }
bind "Alt 3" { GoToTab 3; SwitchToMode "Normal"; }
bind "Alt 4" { GoToTab 4; SwitchToMode "Normal"; }
bind "Alt 5" { GoToTab 5; SwitchToMode "Normal"; }
bind "Alt 6" { GoToTab 6; SwitchToMode "Normal"; }
bind "Alt 7" { GoToTab 7; SwitchToMode "Normal"; }
bind "Alt 8" { GoToTab 8; SwitchToMode "Normal"; }
bind "Alt 9" { GoToTab 9; SwitchToMode "Normal"; }
bind "Alt h" "Alt Left" "PageUp" { GoToPreviousTab; }
bind "Alt l" "Alt Right" "PageDown" { GoToNextTab; }
bind "Alt -" { Resize "Decrease"; }
bind "Alt =" "Alt +" { Resize "Increase"; }
bind "Alt 0" {
LaunchOrFocusPlugin "tab-finder"
}
bind "Alt [" { MoveTab "Left"; }
bind "Alt ]" { MoveTab "Right"; }
bind "Alt j" { BreakPaneLeft; SwitchToMode "Normal"; } // "Inside"
bind "Alt k" { BreakPane; SwitchToMode "Normal"; } // "Outside"
bind "Alt Up" "Alt Down" { TogglePaneEmbedOrFloating; }
bind "Alt m" { ToggleFocusFullscreen; }
bind "Alt e" { EditScrollback; }
bind "Alt /" { SwitchToMode "EnterSearch"; SearchInput 0; }
bind "Alt w" { CloseFocus; }
bind "Alt q" { CloseTab; }
bind "Alt d" { Detach; }
/* bind "Alt q" { Quit; } */
bind "Alt s" {
LaunchOrFocusPlugin "zellij:session-manager" {
floating true
move_to_focused_tab true
};
SwitchToMode "Normal"
}
}
// shared_among "normal" "locked" {
// bind "Enter" {
// WriteChars "\u{000D}";
// MessagePlugin "autolock" {};
// }
// bind "Esc" {
// MessagePlugin "autolock" {};
// WriteChars "\u{001B}";
// }
// }
shared_except "locked" {
/* Put keybindings here if they conflict with Vim or others. */
bind "Alt z" { SwitchToMode "Locked"; }
bind "Alt f" { ToggleFloatingPanes; }
bind "Alt t" { NewPane "Down"; }
bind "Alt v" { NewPane "Right"; }
bind "Ctrl h" { MoveFocus "Left"; }
bind "Ctrl l" { MoveFocus "Right"; }
bind "Ctrl j" { MoveFocus "Down"; }
bind "Ctrl k" { MoveFocus "Up"; }
bind "Ctrl d" { HalfPageScrollDown; }
bind "Ctrl u" { HalfPageScrollUp; }
bind "Ctrl f" { PageScrollDown; }
bind "Ctrl b" { PageScrollUp; }
}
shared_except "normal" "locked" {
bind "Enter" "Esc" { SwitchToMode "Normal"; }
}
}
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
// eg. when terminal window with an active zellij session is closed
// Options:
// - detach (Default)
// - quit
// on_force_close "quit"
// Send a request for a simplified ui (without arrow fonts) to plugins
// Options:
// - true
// - false (Default)
//
// simplified_ui true
// Choose the path to the default shell that zellij will use for opening new panes
// Default: $SHELL
//
// default_shell "fish"
// Choose the path to override cwd that zellij will use for opening new panes
//
// default_cwd ""
// Toggle between having pane frames around the panes
// Options:
// - true (default)
// - false
//
pane_frames false
// Toggle between having Zellij lay out panes according to a predefined set of layouts whenever possible
// Options:
// - true (default)
// - false
//
// auto_layout true
// Whether sessions should be serialized to the cache folder (including their tabs/panes, cwds and running commands) so that they can later be resurrected
// Options:
// - true (default)
// - false
session_serialization false
// Whether pane viewports are serialized along with the session, default is false
// Options:
// - true
// - false (default)
// serialize_pane_viewport true
// Scrollback lines to serialize along with the pane viewport when serializing sessions, 0
// defaults to the scrollback size. If this number is higher than the scrollback size, it will
// also default to the scrollback size. This does nothing if `serialize_pane_viewport` is not true.
//
// scrollback_lines_to_serialize 10000
// Define color themes for Zellij
// For more examples, see: https://github.com/zellij-org/zellij/tree/main/example/themes
// Once these themes are defined, one of them should to be selected in the "theme" section of this fil
themes {
dracula {
fg 248 248 242
bg 40 42 54
red 255 85 85
green 80 250 123
yellow 241 250 140
blue 98 114 164
magenta 255 121 198
orange 255 184 108
cyan 139 233 253
black 0 0 0
white 255 255 255
}
one-half-dark {
fg 220 223 228
bg 40 44 52
black 27 29 35
red 227 63 76
green 152 195 121
yellow 229 192 123
blue 97 175 239
magenta 198 120 221
cyan 86 182 194
white 233 225 254
orange 216 133 76
}
}
// Choose the theme that is specified in the themes section.
// Default: default
// theme "one-half-dark"
theme "tokyo-night-dark"
// The name of the default layout to load on startup
// Default: "default"
// default_layout "compact"
// Choose the mode that zellij uses when starting up.
// Default: normal
// default_mode "locked"
// Toggle enabling the mouse mode.
// On certain configurations, or terminals this could
// potentially interfere with copying text.
// Options:
// - true (default)
// - false
//
// mouse_mode false
// Configure the scroll back buffer size
// This is the number of lines zellij stores for each pane in the scroll back
// buffer. Excess number of lines are discarded in a FIFO fashion.
// Valid values: positive integers
// Default value: 10000
//
// scroll_buffer_size 10000
// Provide a command to execute when copying text. The text will be piped to
// the stdin of the program to perform the copy. This can be used with
// terminal emulators which do not support the OSC 52 ANSI control sequence
// that will be used by default if this option is not set.
// Examples:
//
// copy_command "xclip -selection clipboard" // x11
// copy_command "wl-copy" // wayland
// copy_command "pbcopy" // osx
// Choose the destination for copied text
// Allows using the primary selection buffer (on x11/wayland) instead of the system clipboard.
// Does not apply when using copy_command.
// Options:
// - system (default)
// - primary
//
// copy_clipboard "primary"
// Enable or disable automatic copy (and clear) of selection when releasing mouse
// Default: true
//
// copy_on_select false
// Path to the default editor to use to edit pane scrollbuffer
// Default: $EDITOR or $VISUAL
//
// scrollback_editor "/usr/bin/vim"
// When attaching to an existing session with other users,
// should the session be mirrored (true)
// or should each user have their own cursor (false)
// Default: false
//
// mirror_session true
// The folder in which Zellij will look for layouts
//
// layout_dir "/path/to/my/layout_dir"
// The folder in which Zellij will look for themes
//
// theme_dir "/path/to/my/theme_dir"
// Enable or disable the rendering of styled and colored underlines (undercurl).
// May need to be disabled for certain unsupported terminals
// Default: true
//
// styled_underlines false