From 95d28fbce729fa96cb3c4ffc06ffcbcbada4ad16 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 17 Apr 2026 10:53:46 +0100 Subject: fix: prevent zellij from overwriting stow-managed config 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. --- home/.config/zellij/config.kdl | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/home/.config/zellij/config.kdl b/home/.config/zellij/config.kdl index e1536b5..005dc5e 100644 --- a/home/.config/zellij/config.kdl +++ b/home/.config/zellij/config.kdl @@ -30,27 +30,27 @@ keybinds { // 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"; - }; + 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"; - }; + 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"; - }; + 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"; - }; + name "move_focus" + payload "right" + } } } } -- cgit v1.2.3-70-g09d2