dotfiles/update.sh
2024-03-26 02:18:38 -05:00

13 lines
311 B
Bash
Executable File

#!/bin/bash
echo "Syncing dotfiles with nvim..."
rsync --delete --recursive ~/.config/nvim $(dirname "$0")
echo "Syncing dotfiles with tmux..."
rsync ~/.config/tmux/tmux.conf $(dirname "$0")/tmux/tmux.conf
echo "Syncing dotfiles with zshrc..."
rsync ~/.zshrc $(dirname "$0")/.zshrc
echo "Syncing complete!"