VIM 插件推荐
This guide explains how to install and use Vundle to manage Vim plugins.
1. Installation
Section titled “1. Installation”Create the bundle directory and clone the Vundle repository:
mkdir -p ~/.vim/bundlegit clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim2. Configuration
Section titled “2. Configuration”Add the following configuration to your ~/.vimrc file. Ensure that all Plugin commands are placed between call vundle#begin() and call vundle#end().
set nocompatible " be iMproved, requiredfiletype off " required
" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()
" let Vundle manage Vundle, requiredPlugin 'VundleVim/Vundle.vim'
" Add your plugins herePlugin 'wakatime/vim-wakatime'Plugin 'editorconfig/editorconfig-vim'
call vundle#end() " requiredfiletype plugin indent on " required
" General settingsset rulerset nuset backspace=2set mouse=a3. Install Plugins
Section titled “3. Install Plugins”Launch Vim and run the installation command:
vim +PluginInstall +qallOr inside Vim, run:
:PluginInstall