NundDree को Vundle के साथ कैसे स्थापित करें?


26

मैं विम का उपयोग करना शुरू कर रहा हूं और मैंने पैथोजन के बजाय वुंडले को चुना।

मैं जानना चाहूंगा कि क्या मैं Vundle का उपयोग करके NERDTree स्थापित कर सकता हूं।

मैं विम शुरू कर रहा हूं और इस तरह 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
एक नए उपयोगकर्ता के रूप में, आपको कोई प्लगइन स्थापित नहीं करना चाहिए। पहले वेनिला विम की आदत डालें फिर अपनी समस्याओं के समाधान की तलाश करें क्योंकि आप उनका सामना करते हैं। कुछ उन समाधानों के प्लगइन्स होगी, लेकिन कुछ अन्य लोगों के नहीं होगा। बिंदु में मामला: विम पहले से ही एक फ़ाइल एक्सप्लोरर के साथ आता है ताकि आपको एक और स्थापित करने की आवश्यकता न हो ... और आपको एक प्लगइन प्रबंधक की भी आवश्यकता नहीं है
रोमेनैल

जवाबों:


31

नीचे खाली Vundle config है।

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

अब यदि आप एक नया प्लगइन उदाहरण nddtree जोड़ना चाहते हैं

तुम बस लाइन जोड़ो

Plugin 'scrooloose/nerdtree'

अब इस तरह दिखाई देगा vimrc

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.com:

:PluginInstall

उपयोग करने के बारे में अधिक जानकारी यहां पाई जा सकती है


पुनरारंभ करने के बजाय, केवल कमांड चलाने पर विचार करें source ~/.vimrc
सिरसियो

मैंने भी उपरोक्त चरणों का पालन किया और यह अब काम करता है।
सैटगुलमेज़
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.