From cb40a9e244813e978b722c73bc593f6b0bcebacb Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Mon, 2 Jan 2023 19:32:24 +0100 Subject: deploy.sh: install configs to XDG_CONFIG_HOME --- deploy.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy.sh b/deploy.sh index 7253067..e3eb681 100755 --- a/deploy.sh +++ b/deploy.sh @@ -13,11 +13,11 @@ ln -sf ${CONFIG_DIR}/inputrc ${HOME}/.inputrc ln -sf ${CONFIG_DIR}/screenrc ${HOME}/.screenrc -ln -sf ${CONFIG_DIR}/git/gitconfig ${HOME}/.gitconfig -mkdir -p ${HOME}/.git_template -ln -sfT ${CONFIG_DIR}/git/hooks ${HOME}/.git_template/hooks +mkdir -p ${HOME}/.config/git/template +ln -sf ${CONFIG_DIR}/git/gitconfig ${HOME}/.config/git/config +ln -sfT ${CONFIG_DIR}/git/hooks ${HOME}/.config/git/template/hooks mkdir -p ${HOME}/.mutt ln -sf ${CONFIG_DIR}/muttrc ${HOME}/.mutt/muttrc -ln -sf ${CONFIG_DIR}/ripgreprc ${HOME}/.ripgreprc +ln -sf ${CONFIG_DIR}/ripgreprc ${HOME}/.config/ripgreprc -- cgit v1.2.3