วิธีการติดตั้ง NERDTree ด้วย Vundle


26

ฉันเริ่มใช้ Vim และฉันเลือก Vundle แทนที่จะเป็น Pathogen

ฉันต้องการทราบว่าฉันสามารถติดตั้ง NERDTree โดยใช้ Vundle ได้หรือไม่

ฉันเริ่ม Vim และค้นหา NERDTree เช่นนี้:

:BundleSearch NERDTree

แต่มันไม่ได้ค้นหาปลั๊กอินเท่านั้น:

"Keymap: i - Install plugin; c - Cleanup; s - Se|
arch; R - Reload list                           |~                                               
"Search results for: NERDTree                   |~                                               
Plugin 'nerdtree-ack'                           |~                                               
Plugin 'FindInNERDTree'  

1
ในฐานะผู้ใช้ใหม่คุณไม่ควรติดตั้งปลั๊กอินใด ๆ ทำความคุ้นเคยกับ vanilla Vim ก่อนจากนั้นค้นหาวิธีแก้ไขปัญหาของคุณเมื่อคุณพบปัญหา โซลูชันเหล่านั้นบางส่วนจะเป็นปลั๊กอิน แต่บางโซลูชันจะไม่ใช้ ตรงประเด็น: Vim มาพร้อมกับ File Explorer แล้วดังนั้นคุณไม่จำเป็นต้องติดตั้งอีกอันหนึ่ง ... และคุณไม่จำเป็นต้องมีตัวจัดการปลั๊กอินเช่นกัน
romainl

คำตอบ:


31

ด้านล่างคือการกำหนดค่า Vundle ที่ว่างเปล่า

set nocompatible 
filetype off

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

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

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

ตอนนี้ถ้าคุณต้องการเพิ่มตัวอย่างปลั๊กอินใหม่ nerdtree

คุณเพียงแค่เพิ่มบรรทัด

Plugin 'scrooloose/nerdtree'

ตอนนี้ผู้ดูแลจะมีหน้าตาแบบนี้

set nocompatible 
filetype off

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

" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" added nerdtree
Plugin 'scrooloose/nerdtree'
" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required

ตอนนี้เพียงแค่บันทึก vimrc และรีสตาร์ท vim เพื่อให้สามารถจัดหา vimrc ใหม่จากนั้นออกคำสั่ง: PluginInstall:

:PluginInstall

ข้อมูลเพิ่มเติมเกี่ยวกับการใช้สามารถพบได้ที่นี่


source ~/.vimrcแทนที่จะเริ่มต้นใหม่ให้พิจารณาเพียงแค่ใช้คำสั่ง
cirrusio

ฉันยังทำตามขั้นตอนข้างต้นและใช้งานได้ในขณะนี้
saitgulmez
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.