1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 06:40:25 +01:00

Symlink the direnv configuration file

This commit is contained in:
2025-12-30 22:15:44 +01:00
parent fa2ff5074c
commit 55d4f43141

View File

@@ -62,8 +62,11 @@ DATETIME=$(date +%Y%m%d_%H%M)
# Go home
cd || exit
# We need this config (sub)dir to exist for the symlink
mkdir -p .config/direnv
# Symlink all the things
for TARGET in .bash_aliases .bashrc bin .gitconfig .gitignore_global .gitmodules .hgauthors.txt .hgignore .hgrc .ideavimrc .ignore .screenrc .terminfo .tmux.conf .vim .vimrc install.sh
for TARGET in .bash_aliases .bashrc bin .gitconfig .gitignore_global .gitmodules .hgauthors.txt .hgignore .hgrc .ideavimrc .ignore .screenrc .terminfo .tmux.conf .vim .vimrc install.sh .config/direnv/direnvrc
do
make_link $DIR $TARGET
done