Installing the nerdtree plug-in, it prompts that the installation has been successful. Enter: NERDTree. The prompt is not an editor command. I just started using vim. Please tell me what went wrong
filetype off
The following configurations are set based on other people’s blogs
set rtp+=~/.vim/bundle/vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'git://github.com/scrooloose/nerdtree.git'
Plugin 'git://github.com/kien/ctrlp.vim.git'
call vundle#end()
filetype plugin indent on
First you need to check whether you have successfully installed NERDTree. Enter vim and enter:
Check if there is NERDTree in your Vundle configuration list
Then run:
Install the NERDTree plug-in. If there is a + sign in front of the list, it means you have successfully installed it, or an * sign (already installed)
Then re-enter vim and enter:
Command to start NERDTree
If you want to open vim by default and start NERDTree, configure it in your vimrc file:
You can refer to: NERDTree’s github documentation: https://github.com/scrooloose/nerdtree
Hope it helps you:-D
Executed :PluginInstall?
After typing:NERD, press
<Tab>
Complete. If it can be completed, it can definitely be executed. If it cannot be completed, you need to check some path problems.