-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
18 lines (16 loc) · 908 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syncfrom target:
rsync -avP {{ target }}:~/codes/nvim/ ~/.config/nvim/ --delete
rsync -avP {{ target }}:~/.local/share/nvim/ ~/.local/share/nvim/ --delete
rsync -avP {{ target }}:~/.local/share/bob/ ~/.local/share/bob/ --delete
rsync -avP {{ target }}:~/.cache/nvim/ ~/.cache/nvim/ --delete
rsync -avP {{ target }}:~/codes/nvim-plugins/ ~/codes/nvim-plugins/ --delete
git apply jk.patch
syncto target:
rsync -avP ~/codes/nvim/ {{ target }}:~/.config/nvim/ --delete
rsync -avP ~/.local/share/nvim/ {{ target }}:~/.local/share/nvim/ --delete
rsync -avP ~/.local/share/bob/ {{ target }}:~/.local/share/bob/ --delete
rsync -avP ~/.cache/nvim/ {{ target }}:~/.cache/nvim/ --delete
rsync -avP ~/codes/nvim-plugins/ {{ target }}:~/codes/nvim-plugins/ --delete
pager:
ln -sf ~/.config/nvim ~/.config/nvimpager
ln -sf ~/.local/share/nvim ~/.local/share/nvimpager