Skip to content

Commit a1b714f

Browse files
小林大志小林大志
小林大志
authored and
小林大志
committed
first commit
0 parents  commit a1b714f

File tree

4 files changed

+591
-0
lines changed

4 files changed

+591
-0
lines changed

gemrc

+7
Original file line numberDiff line numberDiff line change
@@ -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

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/sh
2+
3+
# make symbolic links
4+
5+
for name in *; do
6+
target="$HOME/.$name"
7+
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+
fi
16+
fi
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

Comments
 (0)