.vim/windows-vimfiles.sh

Thu, 21 Jan 2016 01:38:10 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 21 Jan 2016 01:38:10 -0500
changeset 239
a99db33c13e1
parent 189
39f8cd12ec5c
child 332
8b1e01d4903d
permissions
-rw-r--r--

don't use vimshell enough

#!/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/*

# rebuilding vimproc dll on babun for w32 gvim:
# $ pact install mingw-gcc-core
# $ make -f make_mingw32.mak CC=i686-pc-mingw32-gcc

mercurial