Hello World from OSS Silicon Valley


HowToUse/Vim/7.2/Vundler/0.10

_ Prerequisite

_ Install&Setup

Step.1
Clone git repository for Vundler.
$ mkdir ~/.vim/bundle
$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Step.2
Prepare .vimrc
$ vi ~/.vimrc
set nocompatible
filetype off

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'gmarik/Vundle.vim'

call vundle#end()
filetype plugin indent on

You can see sample from here

Step.3
Install plugin.
$ vim
:PluginInstall

_ HowToUse

_ Add Plugins

Step.1
Clone git repository for Vim plugin to your bundler directory.
$ git clone <Git repository>

(Example)

$ git clone https://github.com/davidhalter/jedi-vim ~/.vim/bundle/jedi-vim
Step.2
Add line in .vimrc
$ vi ~/.vimrc

(Example)

Plugin 'davidhalter/jedi-vim'
Step.3
Install Plugin.
$ vim
:PluginInstall

You can check installed plugin with the following command.

$ vim
:PluginList

_ Author

S.Yatsuzuka

Last-modified: 2016-01-01 (Fri) 22:22:46 (3036d)