mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-26 10:55:12 +03:00
a25fd88dbb
Check, if direnv supports lorri, if not run `use_flake` directly from direnv.
6 lines
87 B
Plaintext
6 lines
87 B
Plaintext
if command -v lorri >/dev/null 2>&1; then
|
|
eval "$(lorri direnv)"
|
|
else
|
|
use flake
|
|
fi
|