-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.sh
executable file
·45 lines (35 loc) · 1.21 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
# check git, curl and npm
(command -v git >/dev/null 2>&1 && command -v curl >/dev/null 2>&1&& command -v npm >/dev/null 2>&1) || {
echo >&2 "You first need to have git, curl and npm installed. Aborting.";
exit 1;
}
bundle=$HOME/.vim/bundle
vundle=$bundle/Vundle.vim
repo=https://github.com/modood/vimrc/raw/master
# Download "VundleVim/Vundle.vim" Vim Plugin Manager
if [ ! -d $vundle ]; then
git clone https://github.com/VundleVim/Vundle.vim.git $vundle
fi
# Copy dotfiles
dotfiles=(
.vimrc
)
for i in ${dotfiles[@]}; do curl -L $repo/$i > $HOME/$i; done
# PluginInstall: "VundleVim/Vundle.vim" plugin's install command.
vim +PluginInstall +GoInstallBinaries +qall < /dev/tty
# Compile "Shougo/vimproc.vim" manually
if [ ! -f $bundle/vimproc.vim/lib/*.so ]; then
CURRENT_DIR=$PWD
cd $bundle/vimproc.vim && make > /dev/null
cd $CURRENT_DIR
fi
# Copy snippets
snippets=(
snippets/_.snippets
snippets/go.snippets
)
for i in ${snippets[@]}; do curl -L $repo/$i > $bundle/snipmate.vim/$i; done
curl -L $repo/plugins/yank_mapping.vim > $bundle/nerdtree/nerdtree_plugin/yank_mapping.vim
# install npm dependencies
command -v instant-markdown-d >/dev/null 2>&1 || npm install -g instant-markdown-d