¿Cómo instalar NERDTree con Vundle?


26

Estoy empezando a usar Vim y elegí Vundle en lugar de Pathogen.

Me gustaría saber si puedo instalar el NERDTree usando Vundle.

Estoy iniciando Vim y buscando NERDTree de esta manera:

:BundleSearch NERDTree

Pero no encuentra el complemento, solo:

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

1
Como nuevo usuario, no debe instalar ningún complemento. Acostúmbrese a Vanilla Vim primero y luego busque soluciones a sus problemas a medida que los encuentre. Algunas de esas soluciones serán complementos, pero otras no. Caso en cuestión: Vim ya viene con un explorador de archivos, por lo que no necesita instalar otro ... y tampoco necesita un administrador de complementos.
romainl

Respuestas:


31

A continuación se muestra la configuración de Vundle vacía.

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

Ahora, si desea agregar un nuevo complemento, nerdtree

solo agregas la línea

Plugin 'scrooloose/nerdtree'

ahora el vimrc se verá así

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

Ahora, solo guarde el vimrc y reinicie vim para que pueda obtener el nuevo vimrc y luego emita el comando: PluginInstall:

:PluginInstall

Puede encontrar más información sobre el uso aquí


En lugar de reiniciar, considere simplemente ejecutar el comando source ~/.vimrc.
cirrusio

También seguí los pasos anteriores y funciona ahora.
saitgulmez
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.