-
Notifications
You must be signed in to change notification settings - Fork 2
/
vimsync.sh
executable file
·44 lines (32 loc) · 1.17 KB
/
vimsync.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#! /bin/zsh
# add to ~/bin: ln -s ~/configs/vim/vimsync.sh ~/bin/vimsync.sh
# Sync my vim config to a remote host specified.
# Steps:
# 1. cd ~/configs/vim
# 2. git co portable
# 3. rsync -avz --delete -e ssh ~/configs/vim dc:~
# 4. ln -s vim/vim .vim
# 5. ln -s vim/.vimrc .vimrc
# Notes:
# Using a git branch since some stuff I run locally won't be on remote hosts
# This setups the files in a directory on the host called vim and then it
# symlinks the .vimrc and vim directory to the user's home dir
# This currently syncs the git stuff as well, at some point should probably do
# some fancy export to a tmp dir and rsync those files over instead
VIMCONF="/home/rharding/configs/vim"
VIMBRANCH="portable"
cd $VIMCONF
git checkout $VIMBRANCH
# get the hostname
if [ $# -ne 1 ]
then
echo "Usage: vimsync HOSTNAME"
return 65
fi
HOSTNAME=$1
rsync -avz --delete -e ssh ~/configs/vim $HOSTNAME:~
ssh $HOSTNAME 'ln -s vim/vim .vim && ln -s vim/vimrc .vimrc'
# make sure we restore our local vim config to master
git checkout master
# @todo move the above into a shell function, setup a list of hosts, and loop
# through them to sync all hosts at once