12 lines
302 B
Bash
Executable File
12 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Syncing user with nvim..."
|
|
rsync --delete --recursive $(dirname "$0")/nvim/ ~/.config/nvim
|
|
|
|
echo "Syncing user with tmux..."
|
|
echo " Note: prefix + I for tmux setup"
|
|
mkdir -p ~/tmux
|
|
rsync --recursive $(dirname "$0")/tmux/tmux.conf ~/.config/tmux/tmux.conf
|
|
|
|
echo "Syncing complete!"
|