From 55d4f431417927b4803efeb787666babe311921a Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 30 Dec 2025 22:15:44 +0100 Subject: [PATCH] Symlink the direnv configuration file --- install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 630264e..9fcd770 100644 --- a/install.sh +++ b/install.sh @@ -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