diff options
| author | 2026-04-17 10:53:46 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:53:46 +0100 | |
| commit | 5a82b300c1ec5f6bac57c66e06eaa7807d5f964d (patch) | |
| tree | 099f045122092df1eae39900f7e0534a077777ee | |
| parent | 95d28fbce729fa96cb3c4ffc06ffcbcbada4ad16 (diff) | |
| download | dotfiles-5a82b300c1ec5f6bac57c66e06eaa7807d5f964d.tar.gz dotfiles-5a82b300c1ec5f6bac57c66e06eaa7807d5f964d.tar.bz2 dotfiles-5a82b300c1ec5f6bac57c66e06eaa7807d5f964d.zip | |
fix: remove redundant ZELLIJ_CONFIG_FILE env var
The env var pointed to the same default path zellij already uses
($XDG_CONFIG_HOME/zellij/config.kdl). It was added as a workaround
to prevent config overwrites, but investigating the zellij source
(config.rs, lib.rs) confirmed the overwrite is caused by the setup
wizard's Reconfigure instruction, not a path resolution issue.
The real protection: deploy stow before first zellij launch so the
config file exists and write_config_to_disk_if_it_does_not_exist()
returns false, preventing the wizard from appearing.
| -rw-r--r-- | home/.config/zsh/.zprofile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/home/.config/zsh/.zprofile b/home/.config/zsh/.zprofile index 76c7fbe..fc1554d 100644 --- a/home/.config/zsh/.zprofile +++ b/home/.config/zsh/.zprofile @@ -103,7 +103,6 @@ export XCOMPOSECACHE="$XDG_CACHE_HOME/X11/xcompose" export XCOMPOSEFILE="$XDG_CONFIG_HOME/X11/xcompose" export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc" export XSERVERRC="$XDG_CONFIG_HOME/X11/xserverrc" -export ZELLIJ_CONFIG_FILE="$XDG_CONFIG_HOME/zellij/config.kdl" # XAUTHORITY breaks xauth over SSH, only set locally [[ -n $XDG_RUNTIME_DIR && -z $SSH_TTY ]] && export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" |
