We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit a1b714fCopy full SHA for a1b714f
gemrc
@@ -0,0 +1,7 @@
1
+---
2
+:update_sources: true
3
+:benchmark: false
4
+:bulk_threshold: 1000
5
+:backtrace: false
6
+:verbose: true
7
+gem: --no-ri --no-rdoc
install.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+# make symbolic links
+for name in *; do
+ target="$HOME/.$name"
+ if [ -e "$target" ]; then
8
+ if [ ! -L "$target" ]; then
9
+ echo "WARNING: $target exists but is not a symlink."
10
+ fi
11
+ else
12
+ if [ "$name" != 'install.sh' ] && [ "$name" != 'README.md' ]; then
13
+ echo "Creating $target"
14
+ ln -s "$PWD/$name" "$target"
15
16
17
+done
18
19
+# Install NeoBundle
20
21
+if [ ! -d $HOME/.vim/bundle/neobundle.vim ]
22
+then
23
+ git clone https://github.com/Shougo/neobundle.vim.git ~/.vim/bundle/neobundle.vim
24
+fi
0 commit comments