From 5c250543d566ea1f5f48f8c25102af64330158a7 Mon Sep 17 00:00:00 2001 From: servostar Date: Wed, 4 Sep 2024 22:27:27 +0200 Subject: [PATCH] chore: added script to setup config with stow --- run-stow.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 run-stow.sh diff --git a/run-stow.sh b/run-stow.sh new file mode 100755 index 0000000..c041c78 --- /dev/null +++ b/run-stow.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +NEOVIM_CONFIG="~/.config/nvim" + +if [ -d "$NEOVIM_CONFIG" ]; then + stow -v -R -t "$NEOVIM_CONFIG" . +else + echo "Neovim config directory does not exist: $NEOVIM_CONFIG" +fi +