doomemacs/modules/editor/file-templates/templates/direnv-envrc-mode/__envrc

15 lines
335 B
Text
Raw Normal View History

2019-07-10 02:25:00 +02:00
# -*- mode: snippet -*-
# group: file templates
# contributor: Henrik Lissner
# condition: (executable-find "nix-env")
# --
if type lorri &>/dev/null; then
echo "direnv: using lorri"
eval "$(lorri direnv)"
else
# fall back to using direnv's builtin nix support
# to prevent bootstrapping problems.
use nix
fi
`%`$0