Spf13-vim installation and use, spf13-vim Installation and Use
I. Introduction
The spf13-vim is a release of Vim plug-ins and configurations, including a set of carefully selected Vim plug-ins, using Vundle for plug-in management, and can be personalized through the following files
~ /. Vimrc. local # personalized configuration file ~ /. Vimrc. bundles. local # local bundle configuration file ~ /. Vimrc. before. local # a personalized profile loaded earlier than the spf13-vim
Ii. Installation
The following two installation methods are described:
Method 1: run the following command to complete the installation.
curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
Sh:
1) create a directory and file as follows:
mkdir spf13-vimcd spf13-vimwget http://files.cnblogs.com/files/274914765qq/bootstrap.sh
chmod +x bootstrap.sh./bootstrap.sh
2) execute the following command to install
./bootstrap.sh
The following error is reported:
./Bootstrap. sh
The following error is reported:
Cd ~ Vim. vimrc. bundles. default # Content: "Default Bundles {" Use before config if available {if filereadable (expand ("~ /. Vimrc. before ") source ~ /. Vimrc. before endif "}" Use bundles config {if filereadable (expand ("~ /. Vimrc. bundles ") source ~ /. Vimrc. bundles endif "}"}
3) run the task again to complete the installation.
./bootstrap.sh
Echo Bundle \ 'spf13/vim-colors \ '> ~ /. Vimrc. bundles. local # Plug-In: vim-colors. You must first configure vim + BundleInstall in the file. vimrc. bundles. local! + BundleClean + q # Installation
2. Uninstall the plug-in
Echo UnBundle \ 'autoclose \ '> ~ /. Vimrc. local # uninstall the plug-in: AutoCloseecho UnBundle \ 'scrooloose/syntastic \ '> ~ /. Vimrc. local # uninstall the plug-in: scrooloose/syntastic
Go to Vim and execute the following command:
: BundleClean # Delete the original plug-in Directory
Reference: https://github.com/spf13/spf13-vim#fork-customization