1 Star 0 Fork 0

夏周睿/spf13-vim

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bootstrap.sh 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
Flavius Aspra 提交于 2011-06-18 13:12 . /usr/bin/env instead of /bin/env
#!/usr/bin/env sh
warn() {
echo "$1" >&2
}
die() {
warn "$1"
exit 1
}
echo "thanks for installing spf13-vim\n"
# Backup existing .vim stuff
echo "backing up current vim config\n"
for i in ~/.vim ~/.vimrc ~/.gvimrc; do [ -e $i ] && mv $i $i.old; done
echo "cloning spf13-vim\n"
git clone --recursive git://github.com/spf13/spf13-vim.git ~/.spf13-vim
ln -s ~/.spf13-vim/.vimrc ~/.vimrc
ln -s ~/.spf13-vim/.vim ~/.vim
# Build command-t for your system
echo "building command-t executable\n"
echo "command-t depends on ruby and rake to be present\n"
cd ~/.vim/bundle/command-t
(rake make) || warn "Ruby compilation failed. Ruby, GCC or rake not installed?"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/CharlieShark/spf13-vim.git
git@gitee.com:CharlieShark/spf13-vim.git
CharlieShark
spf13-vim
spf13-vim
master

搜索帮助