fix: do not start zellij inside emacs(vterm)

This commit is contained in:
Ryan Yin
2024-01-08 14:14:12 +08:00
parent e42fda1d43
commit 40be9f8a55

View File

@@ -9,7 +9,8 @@ in {
# auto start zellij in nushell # auto start zellij in nushell
programs.nushell.extraConfig = '' programs.nushell.extraConfig = ''
# auto start zellij # auto start zellij
if not "ZELLIJ" in $env { # except when in emacs or zellij itself
if (not "ZELLIJ" in $env) and (not "INSIDE_EMACS" in $env) {
if "ZELLIJ_AUTO_ATTACH" in $env and $env.ZELLIJ_AUTO_ATTACH == "true" { if "ZELLIJ_AUTO_ATTACH" in $env and $env.ZELLIJ_AUTO_ATTACH == "true" {
^zellij attach -c ^zellij attach -c
} else { } else {