17 lines
398 B
Bash
17 lines
398 B
Bash
# See `direnv stdlib` for special functions provided by _direnv_.
|
|
use asdf
|
|
|
|
# Git
|
|
export GIT_AUTHOR_NAME="Michel"
|
|
export GIT_AUTHOR_EMAIL="michel@none"
|
|
export GIT_COMMITTER_NAME="Michel"
|
|
export GIT_COMMITTER_EMAIL="michel@none"
|
|
|
|
# Python virtual env
|
|
layout python3
|
|
|
|
if (($(echo $(direnv_layout_dir)/python* | wc --words) > 1)); then
|
|
log_error "Found several python environments"
|
|
\ls .direnv
|
|
fi
|