vim中的殺手級外掛程式 vundle

2021-07-04 09:14:00 字數 2011 閱讀 8992

當然vim社群的活力是不容懷疑的,沒有槍沒有炮大神們自己造。以前使用過tpope的pathogen,使用git submodule和pathogen, 管理外掛程式已經大大簡化。而今天介紹的vundle, 更是把git操作整合進去,使用者需要做的只是去github上找到自己想要的外掛程式的名字,安裝,更新和解除安裝都可有vundle來完成了。雖然去發現乙個好的外掛程式仍然是乙個上下求索的過程,但是使用者已經可以從安裝配置的繁瑣過程解脫了。

vundle的具體介紹檢視vim.org,或者github repo

1

$ git clone  ~/.vim/bundle/vundle

在.vimrc 中新增bundle的配置

123

4567

891011

1213

1415

1617

1819

2021

2223

2425

2627

2829

3031

3233

3435

3637

set nocompatible                " be improved

filetype off " required!

set rtp+=~/.vim/bundle/vundle/

call vundle#rc()

" let vundle manage vundle

bundle 'gmarik/vundle'

"my bundle here:

"" original repos on github

bundle 'kien/ctrlp.vim'

bundle 'sukima/xmledit'

bundle 'sjl/gundo.vim'

bundle 'jiangmiao/auto-pairs'

bundle 'klen/python-mode'

bundle 'valloric/listtoggle'

bundle 'sirver/ultisnips'

bundle 'valloric/youcompleteme'

bundle 'scrooloose/syntastic'

bundle 't9md/vim-quickhl'

" bundle 'lokaltog/vim-powerline'

bundle 'scrooloose/nerdcommenter'

"..................................

" vim-scripts repos

bundle 'yankring.vim'

bundle 'vcscommand.vim'

bundle 'showpairs'

bundle 'sudoedit.vim'

bundle 'easygrep'

bundle 'voom'

bundle 'vimim'

"..................................

" non github repos

" bundle 'git:'

"......................................

filetype plugin indent

on

bundle分為三類:

在github vim-scripts 使用者下的repos,只需要寫出repos名稱

在github其他使用者下的repos, 需要寫出」使用者名稱/repos名」

不在github上的外掛程式,需要寫出git全路徑

安裝外掛程式

開啟乙個vim, 執行:bundleinstall

或者在命令列執行vim +bundleinstall +qall

安裝完成後外掛程式就能用了

其它常用命令:**:

vim中的殺手級外掛程式 vundle

當然vim社群的活力是不容懷疑的,沒有槍沒有炮大神們自己造。以前使用過tpope的pathogen,使用git submodule和pathogen,管理外掛程式已經大大簡化。而今天介紹的vundle,更是把git操作整合進去,使用者需要做的只是去github上找到自己想要的外掛程式的名字,安裝,更...

vim中的殺手級外掛程式 vundle

當然vim社群的活力是不容懷疑的,沒有槍沒有炮大神們自己造。以前使用過tpope的pathogen,使用git submodule和pathogen,管理外掛程式已經大大簡化。而今天介紹的vundle,更是把git操作整合進去,使用者需要做的只是去github上找到自己想要的外掛程式的名字,安裝,更...

vim 外掛程式 開工大吉,推薦幾個Vim神級外掛程式

2019年的第乙個工作日已經結束,想必大家還有些沒有緩過來。首先推薦的當然是vundle這個外掛程式管理,在這之前vim外掛程式安裝非常不方便,雖然後面陸續有了pathogen進行管理,但比起vundle不夠好用。vundle在github上面有上將近20k的star,已經作為最流行的vim外掛程式...