vim安装补齐插件

1.  

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

2.

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" 在这里添加其他插件
Plugin 'davidhalter/jedi-vim'

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required

  

3.

  1. 重新启动 Vim,然后运行 :PluginInstall 命令安装插件。

posted @ 2025-10-15 14:08  牛郎  阅读(6)  评论(0)    收藏  举报