使用Vundle安装YouCompleteMe Linux x64系统 1. Vundle简介 Vundle是Vim bundle的缩写,是Vim插件管理器。 安装Vundle 使用git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim命令下载源码,默认安装在 /.vim/bundle/vundle下;如果/.vim/bundle/vundle不存在,使用 madir -p /.vim/bundle/vundle来建立目录; vim ~/. vimrc打开vimrc Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required 和初始化相关的runtime path set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " 另一种选择, 指定一个vundle安装插件的路径
vim 插件管理 Vundle [https://github.com/VundleVim/Vundle.vim]: 1.下载 Vundle 仓库 git clone https://github.com /VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 2.vim ~/.vimrc 在最上面,添加以下配置 " =================== Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required commands between vundle#begin/end. " plugin on GitHub repo Plugin 'tpope/vim-fugitive' " plugin from
首先如果你不适用插件管理工具的话,那么你对插件的安装、配置和管理相对会麻烦很多,曾经没使用Vundle的时候,我经常遇到无法安装一些vim插件,但是使用Vundle后你只要在文件中添加一行你的插件名就ok 首先我们要去Vundle的github库下载安装Vundle。 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 执行上面的命令,将Vundle库下载到本地的 and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required
使用Vundle安装YouCompleteMe Linux x64系统 1. Vundle简介 Vundle是Vim bundle的缩写,是Vim插件管理器。 安装Vundle 使用git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim命令下载源码,默认安装在 /.vim/bundle/vundle下;如果/.vim/bundle/vundle不存在,使用 madir -p /.vim/bundle/vundle来建立目录; vim ~/. vimrc打开vimrc Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required 和初始化相关的runtime path set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " 另一种选择, 指定一个vundle安装插件的路径
确认已经安装vundle插件管理器 搜索到后通过点击 i 进行安装,然后重启vim即可 拓展 :PluginList 列出插件列表 :PluginUpdate 更新新配置的插件 三,备注 1,提示:Not an editor command: pluginUpdte 没有此命令 说明vim还没有安装vundle插件 2,安装 git clone https://github.com /gmarik/vundle.git ~/.vim/bundle/vundle 3,重新加载vim配置文件,或者重新打开个文件。
安装vundle $ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 默认安装在/.vim/ .vimrc文件中,加入之后保存之后就可以使用vundle了。 runtime path set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " 另一种选择, 指定一个vundle安装插件的路径 "call vundle #begin('~/some/path/here') " 让vundle管理插件版本,必须 Plugin 'VundleVim/Vundle.vim' " 以下范例用来支持不同格式的插件安装. " 请将安装插件的命令放在vundle#begin和vundle#end之间. " Github上的插件 " 格式为 Plugin '用户名/插件仓库名' Plugin 'tpope/vim-fugitive
2.下载Vundle。Vundle托管在Github上,需要使用到git来检出源代码。 /vundle这个目录下。 set rtp+=~/.vim/bundle/vundle/ call vundle#rc() " let Vundle manage Vundle " required! Vundle manage Vundle " required! Vundle manage Vundle " required!
三、配置vim插件管理vundle Vundle 是 Vim bundle 的简称,使用git来管理vim插件,有了它,安装其它插件就方便很多。 rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " let Vundle manage Vundle, required Plugin 'VundleVim /Vundle.vim' " All of your Plugins must be added before the following line call vundle#end() #begin()和call vundle#end()之间,保存配置后在vim中执行 :PluginInstall ? and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " let Vundle manage Vundle, required
# git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 3、在用户目录下创建并编辑.vimrc path set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " 另一种选择, 指定一个vundle安装插件的路径 "call vundle#begin ('~/some/path/here') " 让vundle管理插件版本,必须 Plugin 'VundleVim/Vundle.vim' " 从GitHub安装xptemplate插件 Plugin 'drmingdrmer/xptemplate' " 以下范例用来支持不同格式的插件安装. " 请将安装插件的命令放在vundle#begin和vundle#end之间. " Github上的插件 官方GitHub:https://github.com/VundleVim/Vundle.vim/blob/master/README_ZH_CN.md。
用vim来写python程序,所需要设置的地方 下载插件: 1 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'vim-scripts/indentpython.vim' Plugin 'vim-syntastic/syntastic' vim-powerline' Plugin 'Yggdroot/indentLine' " All of your Plugins must be added before the following line call vundle
配置文件备份: " encoding dectection set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1 " Set vundle settings here " git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim set nocompatible and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required "Plugin 'VundleVim/Vundle.vim' "https://github.com/VundleVim/Vundle.vim Bundle 'Valloric/YouCompleteMe
repo: git clone git://github.com/humiaozuzu/dot-vimrc.git ~/.vim ln -s ~/.vim/vimrc ~/.vimrc Setup Vundle : git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle Install bundles. 然后就发现报错了,类似于 处理 function vundle#installer#new.. <SNR>31_process..vundle#installer#run..vundle#installer#install..<SNR>31_sync.. <SNR>31_system 时发生错误: 第 1 行: E484: 无法打开文件 /tmp/v7KQNcz/3 处理 function vundle#installer#new..
你可以不安装 Vundle,然后手动安装 smartim,不过不推荐你这样做,因为将文件复制到指定的目录是件麻烦事,而且后面你可能需要更多好用的插件。 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 2、配置 Vundle,添加 smartim and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'ybian/smartim' " All of your Plugins must be added before the
iMproved, required 2 filetype off " required 3 4 " set the runtime path to include Vundle and initialize 5 set rtp+=~/.vim/bundle/Vundle.vim 6 call vundle#begin() 7 " alternatively, pass a path where Vundle should install plugins 8 9 " let Vundle manage Vundle, required 10 Plugin 'VundleVim/Vundle.vim' 11 12 " python auto-complete 13 Plugin 'davidhalter/jedi-vim' 14 15 " tab vim-colors-solarized' 20 21 22 " All of your Plugins must be added before the following line 23 call vundle
显示输入的命令 set showcmd "被分割窗口之间显示空白 set fillchars=vert:/ set fillchars=stl:/ set fillchars=stlnc:/ " vundle 环境设置 filetype off set rtp+=~/.vim/bundle/Vundle.vim " vundle 管理的插件列表必须位于 vundle#begin() 和 vundle#end () 之间 call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'altercation/vim-colors-solarized' Plugin 管理: 安装 vundle: git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 如我的配置文件所示 #begin() 和 call vundle#end() 之间,最后进入 vim 执行: :PluginInstall 便安装完成插件。
(囧,blog地址写错了): 百度文库地址:http://wenku.baidu.com/view/72aae203581b6bd97f19ea4f.html 上我的.vimrc: " 配置vundle set rtp+=~/.vim/bundle/vundle/ call vundle#rc() " let Vundle manage Vundle " required! Bundle 'gmarik/vundle' " My Bundles here: " " original repos on github Bundle 'davidhalter - confirm(or auto-approve) removal of unused bundles " " see :h vundle for more details or wiki
在linux下安装 vundle.vim,请参照https://github.com/VundleVim/Vundle.vim获取和配置 打开.vimrc,如果没有可以创建.vimrc,复制如下内容到. " be iMproved, required filetype off " required" 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 Plugin 'fatih /vim-go' call vundle#end() " required filetype plugin indent on " required " When started
这个我自己的vim配置,以备我在一台全新的MAC电脑上恢复原来的vim配置 安装vim brew install vim --with-lua 安装vundle mkdir -p ~/.vim/bundle git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle 克隆vim-config工程并进行vundle插件安装 git
make install 4.4 查看vim版本及对python的支持: vim --version 注: +python/dyn, +python3/dyn有相应的符号”+” 才表示支持相应功能 5.Vundle 插件下载安装,Vundle为vim插件管理插件: 5.1.下载:从https://github.com/VundleVim/Vundle.vim.git中 clone到 vim插件位置:~/.vim/bundle /Vundle.vim 5.2. 在.vimrc中加入Vundle配置:把Vundle.vim/test中的minirc.vim内容添加到.vimrc里去 5.3. 下载新的插件放在~/.vim/bundle/下,再在.vimrc里面的vundle#begin()与vundle#end() 之间加上插件目录 5.4.
Vim与Python真乃天作之合:打造强大的Python开发环境 2. vundle: vim插件管理安装之错误总结 3. " required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins " call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'gmarik/Vundle.vim' Plugin 'vim-scripts/indentpython.vim' Plugin 'tmhedberg/SimpylFold' "Plugin