aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/zellij/config.kdl
Commit message (Collapse)AuthorAgeFilesLines
* feat: add Alt+q keybind to detach from zellijLibravatar sommerfeld2 days1-0/+3
|
* feat: add keybinds and compact UI for zellijLibravatar sommerfeld2 days1-0/+18
| | | | | | | | | | | | | Keybindings (all in shared_except locked): - Alt+t: new tab, Alt+[/]: cycle tabs - Alt+w: zoom/fullscreen toggle (like tmux prefix+z) - Alt+x: close focused pane (like tmux prefix+x) - Alt+e: edit scrollback in $EDITOR (opens in nvim) - Alt+-/=: quick pane resize without entering resize mode UI options: - pane_frames false: hide pane borders for cleaner look - default_layout compact: single bottom status bar, no top bar
* fix: disable zellij startup tips and release notes popupsLibravatar sommerfeld2 days1-0/+4
| | | | | | | | | | | These floating popups (tips, release notes) appear on startup when not explicitly disabled. Dismissing them with Ctrl+C triggers zellij's Reconfigure with write_config_to_disk=true, which backs up the config to .bak and writes a 600-line autogenerated version, destroying stow symlinks. Setting both to false in the config prevents the popups from appearing and the destructive write from ever being triggered.
* fix: prevent zellij from overwriting stow-managed configLibravatar sommerfeld2 days1-12/+12
| | | | | | | Set ZELLIJ_CONFIG_FILE to explicitly point at the XDG config path. Without this, zellij overwrites the stow symlink with an auto-generated default config on startup. Also remove KDL v1 semicolons from MessagePlugin child nodes.
* refactor: clean up zellij config and update vim-zellij-navigatorLibravatar sommerfeld2 days1-19/+10
| | | | | | | Restore minimal config after accidental dump-config overwrite. Remove clear-defaults=true (custom bindings merge with defaults). Remove support_kitty_keyboard_protocol (debug leftover). Update vim-zellij-navigator from v0.2.1 to v0.3.0.
* feat: add Alt+1-9 keybinds for direct tab navigationLibravatar sommerfeld2 days1-0/+13
| | | | | Replicates tmux prefix+number behavior. Available in all modes except locked.
* fix: use OSC 52 for clipboard instead of wl-copyLibravatar sommerfeld2 days1-2/+1
| | | | | | | System uses Xorg, not Wayland. OSC 52 is terminal-native and works on both X11 and Wayland without external tools. Alacritty supports it natively. Removes copy_command from zellij config (OSC 52 is the default when no copy_command is set).
* refactor: replace tmux.nvim with smart-splits.nvim for zellijLibravatar sommerfeld2 days1-0/+31
| | | | | | | | | | - Swap aserowy/tmux.nvim for mrjones2014/smart-splits.nvim in init.lua - Configure Ctrl h/j/k/l navigation keymaps (same keys as before) - Add vim-zellij-navigator WASM plugin keybindings to zellij config - Remove tmux treesitter parser (no longer needed) smart-splits.nvim auto-detects zellij as the multiplexer and provides seamless split/pane navigation across neovim and zellij boundaries.
* feat: add zellij config with gruvbox-dark themeLibravatar sommerfeld2 days1-0/+22
Migrate from tmux to zellij. Most tmux plugin features are zellij built-ins: session resurrection, mouse mode, clipboard integration, pane/tab management, session manager, and search. - gruvbox-dark theme (built-in, replaces tmux-gruvbox plugin) - serialize_pane_viewport for full session resurrection - copy_on_select with wl-copy for Wayland clipboard - 50k line scrollback buffer - attach_to_session for auto-reattach