chore: added script to setup config with stow

This commit is contained in:
Sven Vogel 2024-09-04 22:27:27 +02:00
parent 7572f5e22a
commit 5c250543d5
1 changed files with 10 additions and 0 deletions

10
run-stow.sh Executable file
View File

@ -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