feat/migrate-to-gnu-stow #10

Merged
servostar merged 3 commits from feat/migrate-to-gnu-stow into main 2024-09-05 16:16:55 +00:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 5c250543d5 - Show all commits

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