blob: 3d7f9761b47fa66a7d62917b42d1f60e47d8c9cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Zellij configuration
// See: https://zellij.dev/documentation/options
// Gruvbox dark theme (built-in)
theme "gruvbox-dark"
// Session resurrection: serialize layout, panes, and running commands to disk.
// Exited sessions can be listed and resurrected from the session-manager.
// session_serialization is already true by default, but we also want viewport.
serialize_pane_viewport true
// Scrollback: open in $EDITOR with Ctrl-s → e
scroll_buffer_size 50000
// Clipboard: copy to system clipboard on selection
copy_on_select true
// Use wl-copy for Wayland clipboard (fallback from OSC 52)
copy_command "wl-copy"
// Auto-attach to existing session with the same name instead of erroring
attach_to_session true
|