当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
24 Star 75 Fork 12

LER0ever / EverVim
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Boot-EverVim.sh 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
Jon Rogers 提交于 2018-05-01 00:59 . added yaml to formatting autocmds
#!/usr/bin/env bash
echo 'Welcome to EverVim, a powerful & modern vim distribution'
echo 'Booting EverVim ...'
cd ~
if [ ! -d ".EverVim" ]; then
echo "Cloning into ~/.EverVim ..."
git clone https://github.com/LER0ever/EverVim ~/.EverVim
else
echo "Updating EverVim Config ..."
git -C ~/.EverVim pull
fi
# Ensure we have .config
mkdir -p ~/.config/
echo 'Soft-Linking Vim/NeoVim Config ...'
ln -sfnv ~/.EverVim ~/.vim
ln -sfnv ~/.EverVim ~/.config/nvim
ln -sfnv ~/.EverVim/vimrc ~/.EverVim/init.vim
ln -sfnv ~/.EverVim/core/gui.vim ~/.EverVim/ginit.vim
if [ ! -f ".EverVim.vimrc" ]; then
echo "Copied EverVim configuration sample to ~/.EverVim.vimrc"
cp ~/.EverVim/.EverVim.vimrc.sample ~/.EverVim.vimrc
fi
echo 'Downloading Vim-Plug'
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
if [ ! -f ".ctags" ]; then
echo 'Configuring CTags ...'
ln -sfnv ~/.EverVim/tools/ctags/ctags ~/.ctags
fi
echo 'All done with this script, now run vim/neovim and execute ":PlugInstall"'
VimL
1
https://gitee.com/LER0ever/EverVim.git
git@gitee.com:LER0ever/EverVim.git
LER0ever
EverVim
EverVim
master

搜索帮助