aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:53:46 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:53:46 +0100
commit95d28fbce729fa96cb3c4ffc06ffcbcbada4ad16 (patch)
tree2a102d657da70755ed65d3239dd4c193950bbd75
parentfc1a3269d392da1e6a3d13ec95f1ff8f4594b736 (diff)
downloaddotfiles-95d28fbce729fa96cb3c4ffc06ffcbcbada4ad16.tar.gz
dotfiles-95d28fbce729fa96cb3c4ffc06ffcbcbada4ad16.tar.bz2
dotfiles-95d28fbce729fa96cb3c4ffc06ffcbcbada4ad16.zip
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.
-rw-r--r--home/.config/zellij/config.kdl24
1 files 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"
+ }
}
}
}