.vim/windows-vimfiles.sh

Sat, 30 May 2015 02:58:07 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 30 May 2015 02:58:07 -0400
changeset 184
ddb5e993a367
parent 130
906ce6af31f6
child 189
39f8cd12ec5c
permissions
-rw-r--r--

Handle all passed options, chdir to bindir

#!/bin/bash

set -euo pipefail
IFS=$'\n\t'

if [ ! -L ~/userprofile ]; then
  echo "Please link ~/userprofile"
fi

USERPROFILE="$(readlink ~/userprofile)"

cd `hg root`

cp -vu .vimrc ${USERPROFILE}/_vimrc

if [ ! -d ${USERPROFILE}/vimfiles ]; then
  mkdir ${USERPROFILE}/vimfiles
fi

cp -vuRL -t ${USERPROFILE}/vimfiles .vim/*

mercurial