VUNDLEでNERDTreeをインストールする方法は?


26

私はVimを使い始めており、Pathogenの代わりにVundleを選択しました。

Vundleを使用してNERDTreeをインストールできるかどうか知りたいです。

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
新規ユーザーとして、プラグインをインストールしないでください。最初のバニラのVimに慣れるその後、あなたがそれらが発生したとして、あなたの問題の解決策を探してください。これらのソリューションの一部はプラグインになりますが、そうでないものもあります。適切なケース:Vimには既にファイルエクスプローラーが付属しているため、別のファイルエクスプローラーをインストールする必要ありません。プラグインマネージャーも必要ありません。
ロメイン

回答:


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'

これで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コマンドを発行できます

:PluginInstall

使用の詳細については、こちらをご覧ください


再起動するのではなく、単にコマンドを実行することを検討してくださいsource ~/.vimrc
cirrusio

また、上記の手順を実行しましたが、現在は機能しています。
saitgulmez
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.