diff options
Diffstat (limited to 'old/install')
-rwxr-xr-x | old/install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/old/install b/old/install new file mode 100755 index 0000000..c55b5a3 --- /dev/null +++ b/old/install @@ -0,0 +1,14 @@ +#! /bin/bash + +DIR=$(readlink -f $(dirname $0)) +pushd $HOME >/dev/null +rm .vim* +ln -sf $DIR .vim +ln -sf $DIR/vimrc .vimrc +ln -sf $DIR/vimrc .nvimrc +ln -sf $DIR/vimperatorrc .vimperatorrc +popd >/dev/null + +git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim + +vim +PluginInstall +qall |