You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
229 B
Plaintext
12 lines
229 B
Plaintext
8 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
_direnv_hook() {
|
||
|
eval "$(direnv export bash)";
|
||
|
};
|
||
|
|
||
|
if type direnv > /dev/null; then
|
||
|
if ! [[ "$PROMPT_COMMAND" =~ _direnv_hook ]]; then
|
||
|
PROMPT_COMMAND="_direnv_hook;$PROMPT_COMMAND";
|
||
|
fi
|
||
|
fi
|