dotfiles/update.sh

10 lines
234 B
Bash
Raw Normal View History

2024-01-16 18:22:14 -06:00
#!/bin/bash
2024-01-16 18:32:22 -06:00
echo "Syncing dotfiles with nvim..."
rsync --delete --recursive ~/.config/nvim $(dirname "$0")
2024-01-16 19:05:19 -06:00
echo "Syncing dotfiles with tmux..."
rsync ~/.config/tmux/tmux.conf $(dirname "$0")/tmux/tmux.conf
echo "Syncing complete!"