.vim/windows-vimfiles.sh

Fri, 12 Jun 2015 01:30:40 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 12 Jun 2015 01:30:40 -0400
changeset 189
39f8cd12ec5c
parent 130
906ce6af31f6
child 332
8b1e01d4903d
permissions
-rw-r--r--

Add note about vimproc build

130
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
1 #!/bin/bash
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
2
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
3 set -euo pipefail
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
4 IFS=$'\n\t'
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
5
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
6 if [ ! -L ~/userprofile ]; then
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
7 echo "Please link ~/userprofile"
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
8 fi
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
9
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
10 USERPROFILE="$(readlink ~/userprofile)"
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
11
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
12 cd `hg root`
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
13
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
14 cp -vu .vimrc ${USERPROFILE}/_vimrc
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
15
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
16 if [ ! -d ${USERPROFILE}/vimfiles ]; then
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
17 mkdir ${USERPROFILE}/vimfiles
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
18 fi
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
19
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
20 cp -vuRL -t ${USERPROFILE}/vimfiles .vim/*
906ce6af31f6 Get rid of batch file for smarter shell script that can push out to win32 vim
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
21
189
39f8cd12ec5c Add note about vimproc build
Meredith Howard <mhoward@roomag.org>
parents: 130
diff changeset
22 # rebuilding vimproc dll on babun for w32 gvim:
39f8cd12ec5c Add note about vimproc build
Meredith Howard <mhoward@roomag.org>
parents: 130
diff changeset
23 # $ pact install mingw-gcc-core
39f8cd12ec5c Add note about vimproc build
Meredith Howard <mhoward@roomag.org>
parents: 130
diff changeset
24 # $ make -f make_mingw32.mak CC=i686-pc-mingw32-gcc
39f8cd12ec5c Add note about vimproc build
Meredith Howard <mhoward@roomag.org>
parents: 130
diff changeset
25
39f8cd12ec5c Add note about vimproc build
Meredith Howard <mhoward@roomag.org>
parents: 130
diff changeset
26

mercurial