wget http://www.vim.org/scripts/download_script.php?src_id=17123 -O nerdtree.zip
unzip nerdtree.zip
mkdir -p ~/.vim/{plugin,doc}
cp plugin/NERD_tree.vim ~/.vim/plugin/
cp doc/NERD_tree.txt ~/.vim/doc/
安装好后,命令行中输入vim,打开vim后,在vim中输入:NERDTree,你就可以看到NERDTree的效果了。
为了方便起见,我们设置一下快捷键,在~/.vimrc 文件中添加下面内容:
" NERDTree
map <F10> :NERDTreeToggle<CR>
这样打开vim后,只要按键盘上的F10就可以显示和隐藏NERDTree的文件浏览了。
运行效果如图:
Ubuntu14.04配置ctags+vim查看源码:http://www.linuxdiyf.com/linux/16621.html
Ubuntu下代码查看小妙招-vim ctags cscope的简单用法:http://www.linuxdiyf.com/linux/3060.html
Vim集成Ctags和Taglist:http://www.linuxdiyf.com/linux/2818.html
Ubuntu下创建Vim+Taglist+Cscope+Ctags组合编辑器:http://www.linuxdiyf.com/linux/1807.html