Add gitattributesdb support. Update bash startup files. Small changes to other files.

This commit is contained in:
Darren 'Tadgy' Austin 2024-08-25 21:20:56 +01:00
commit 93e8fe1e3f
22 changed files with 742 additions and 620 deletions

8
.bash_profile.d/perl5 Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash - not strictly necessary, but helps nano with syntax highlighting.
hash perl >/dev/null 2>&1 && {
export PERL_MB_OPT="--install_base \"$HOME/.local/perl5\""
export PERL_MM_OPT="INSTALL_BASE=$HOME/.local/perl5"
export PERL_LOCAL_LIB_ROOT="$HOME/.local/perl5${PERL_LOCAL_LIB_ROOT:+:$PERL_LOCAL_LIB_ROOT}"
export PERL5LIB="$HOME/.local/perl5/lib/perl5${PERL5LIB:+:$PERL5LIB}"
}