Vundle과 함께 NERDTree를 설치하는 방법?


26

저는 Vim을 사용하기 시작했고 병원균 대신 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
새로운 사용자는 플러그인을 설치하지 않아야합니다. 바닐라 빔에 익숙해하려면 먼저 다음 당신이 그들을 발생으로 문제에 대한 해결책을 찾습니다. 이러한 솔루션 중 일부 는 플러그인이지만 다른 솔루션은 그렇지 않습니다. 적절한 예 : 당신이하지 않도록 빔 이미 파일 탐색기와 함께 제공 해야 할 또 다른 하나를 설치하는 ... 그리고 당신이하지 않는 필요 하거나 플러그인 관리자를.
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'

이제 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.