vim插件管理器vundle+python插件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vim插件管理器vundle+python插件相关的知识,希望对你有一定的参考价值。
这个github上vundle的地址https://github.com/gmarik/vundle
设置vundle :
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
touch ~/{.vimrc,.vimrc.bundle} 这里为了.vimrc不臃肿,新建了.vimrc.bundle
在.vimrc插入如下字段
if filereadable(expand("~/.vimrc.bundle"))
source ~/.vimrc.bundle
endif
.vimrc.bundle插入如下:
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#rc()
"如下定义了Github repos"
Bundle ‘christoomey/vim-run-interactive‘
Bundle ‘croaky/vim-colors-github‘
Bundle ‘danro/rename.vim‘
Bundle ‘majutsushi/tagbar‘
Bundle ‘kchmck/vim-coffee-script‘
Bundle ‘kien/ctrlp.vim‘
Bundle ‘pbrisbin/vim-mkdir‘
Bundle ‘scrooloose/syntastic‘
Bundle ‘slim-template/vim-slim‘
"根据自己的需求选择其他插件"
退出当前VIM,重新进入输入:BundleInstall 安装所有插件
BundleClean 清除未使用的插件
BundleList 列出所有插件
BundleSearch 查找插件
BundleUpdate 更新插件
上述已经完成了插件的安装。
如下是gibhub ,python-mode给出的安装python支持的插件,你可以访https://github.com/python-mode/python-mode
cd ~/.vim mkdir -p bundle && cd bundle git clone https://github.com/python-mode/python-mode.git
Enable pathogen in your ~/.vimrc
:
" Pathogen load filetype off call pathogen#infect() call pathogen#helptags() filetype plugin indent on syntax on
以上是关于vim插件管理器vundle+python插件的主要内容,如果未能解决你的问题,请参考以下文章