mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 01:18:26 +02:00
fix: do not start zellij inside emacs(vterm)
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user