chore(global): update configs as usual

also update contents of the humans.txt file btw

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
This commit is contained in:
Andrei Jiroh Halili 2025-06-13 20:09:33 +08:00
parent bef9262872
commit e5048e6f0f
No known key found for this signature in database
GPG key ID: 67BFC91B3DA12BE8
6 changed files with 46 additions and 6 deletions

17
.envrc
View file

@ -1,8 +1,17 @@
#!/usr/bin/env bash
if [[ $DEBUG != "" ]]; then
set -x
fi
if command -v devenv >> /dev/null; then
eval "$(devenv direnvrc)"
use devenv
eval "$(devenv direnvrc)"
use devenv
else
echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'"
fi
echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'"
return 1
fi
if [[ $DEBUG != "" ]]; then
set +x
fi