blob: e1536b55c659374ec3ea9eec3d4a370e20791f25 (
plain) (
blame)
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
|
// Gruvbox dark theme (built-in)
theme "gruvbox-dark"
// Session resurrection
serialize_pane_viewport true
// Scrollback
scroll_buffer_size 50000
// Clipboard: copy to system clipboard on selection (OSC 52)
copy_on_select true
// Auto-attach to existing session with the same name instead of erroring
attach_to_session true
// Custom keybindings (merged with defaults)
keybinds {
shared_except "locked" {
// Direct tab access (Alt+number)
bind "Alt 1" { GoToTab 1; }
bind "Alt 2" { GoToTab 2; }
bind "Alt 3" { GoToTab 3; }
bind "Alt 4" { GoToTab 4; }
bind "Alt 5" { GoToTab 5; }
bind "Alt 6" { GoToTab 6; }
bind "Alt 7" { GoToTab 7; }
bind "Alt 8" { GoToTab 8; }
bind "Alt 9" { GoToTab 9; }
// Seamless vim/zellij pane navigation (requires smart-splits.nvim)
bind "Ctrl h" {
MessagePlugin "https://github.com/hiasr/vim-zellij-navigator/releases/download/0.3.0/vim-zellij-navigator.wasm" {
name "move_focus";
payload "left";
};
}
bind "Ctrl j" {
MessagePlugin "https://github.com/hiasr/vim-zellij-navigator/releases/download/0.3.0/vim-zellij-navigator.wasm" {
name "move_focus";
payload "down";
};
}
bind "Ctrl k" {
MessagePlugin "https://github.com/hiasr/vim-zellij-navigator/releases/download/0.3.0/vim-zellij-navigator.wasm" {
name "move_focus";
payload "up";
};
}
bind "Ctrl l" {
MessagePlugin "https://github.com/hiasr/vim-zellij-navigator/releases/download/0.3.0/vim-zellij-navigator.wasm" {
name "move_focus";
payload "right";
};
}
}
}
|