10 lines
291 B
Bash
Executable File
10 lines
291 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Syncing user with nvim..."
|
|
rsync --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!"
|