vim插件

来源:互联网 发布:诛仙3斩龙剑测抗数据 编辑:程序博客网 时间:2024/06/01 08:06

1. pathogen
https://github.com/tpope/vim-pathogen
安装pathogen之后把插件安装到~/.vim/bundle/目录下

2. nerdtree
git clone http://github.com/scrooloose/nerdtree.git

.vimrc

nmap <silent> <c-n> :NERDTreeToggle<CR>

3. tagbar
需要安装ctags: sudo apt-get install ctags

git clone https://github.com/majutsushi/tagbar.git

.vimrc配置

nmap <F4> :TagbarToggle<CR>let g:tagbar_width = 40autocmd VimEnter * nested :call tagbar#autoopen(1)let g:tagbar_right = 1

4. 语法高亮
git clone https://github.com/majutsushi/tagbar.git

0 0
原创粉丝点击