zhuxiaoxi

Vundle

安装

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

配置

  • vimrc首部添加
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin \'VundleVim/Vundle.vim\'

call vundle#end()
filetype plugin indent on
  • 安装脚本在vim中运行:PluginInstall
  • 在命令行直接安装而不打开vim运行vim +PluginInstall +qall

分类:

技术点:

相关文章:

  • 2021-07-22
  • 2022-12-23
  • 2022-02-27
  • 2021-11-29
  • 2021-11-17
  • 2022-02-10
  • 2021-06-23
  • 2021-06-20
猜你喜欢
  • 2021-10-15
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
  • 2021-10-07
相关资源
相似解决方案