summaryrefslogtreecommitdiff
path: root/modules/20-zsh/install.sh
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-11-28 11:26:59 -0500
committerGalen Guyer <galen@galenguyer.com>2022-11-28 11:26:59 -0500
commit439d249e42ddba594115411a4eafc6140cf46dfc (patch)
tree2f0df685bc997b9001ea25a6cc1f4969e7f2ec17 /modules/20-zsh/install.sh
parent0752767c04a7816f5818987568d6ac5aaa810fc0 (diff)
Use soft links instead of hard links
Diffstat (limited to 'modules/20-zsh/install.sh')
-rw-r--r--modules/20-zsh/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/20-zsh/install.sh b/modules/20-zsh/install.sh
index a4d4587..7d76729 100644
--- a/modules/20-zsh/install.sh
+++ b/modules/20-zsh/install.sh
@@ -33,5 +33,5 @@ function install() {
cd "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting" && git pull
fi
- ln -f "$_scriptdir/zshrc" "$HOME/.zshrc"
+ ln -sf "$_scriptdir/zshrc" "$HOME/.zshrc"
}