dotfiles/update.sh

10 lines
234 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 complete!"