13 lines
311 B
Bash
Executable File
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!"
|