7 lines
198 B
Bash
Executable File
7 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Syncing dotfiles with nvim..."
|
|
rsync --recursive ~/.config/nvim $(dirname "$0")
|
|
echo "Syncing dotfiles with tmux..."
|
|
rsync ~/.config/tmux/tmux.conf $(dirname "$0")/tmux/tmux.conf
|