diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2024-07-25 12:36:25 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2024-07-25 12:36:25 +0400 |
| commit | 6cef7dd69713b18bceb8f38080bbe720f45c7483 (patch) | |
| tree | 4375d64cab94e3bfc41bbfa3ea5df1486e95f290 /.zshrc | |
| parent | e58ddaedd6d5d843d289d6b9eaad5c18dc353559 (diff) | |
don't execute zellij on start of shell if EMACS variable is non-zero
Diffstat (limited to '.zshrc')
| -rw-r--r-- | .zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,6 +73,6 @@ source $HOME/.zprofile # # exec tmux # fi -if command -v zellij &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$ZELLIJ" ]; then +if command -v zellij &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$ZELLIJ" ] && [ -z "$EMACS" ]; then exec zellij fi |