LoginSignup
2
2

More than 5 years have passed since last update.

Vim Plugin を管理する

Posted at

Plugin 管理 System の Download

Terminal
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

echo "source ~/.vim/bundle/vundle/test/minirc.vim" >> ~/.vimrc

vim ~/.vim/bundle/vundle/test/minirc.vim

Plugin の Install

~/.vim/bundle/vundle/test/minirc.vim
以下を入力
:BundleInstall

Plugin の 追加

~/.vim/bundle/vundle/test/minirc.vim
Bundle 'gmarik/vundle'

"以下にインストールしたい Plugin を追記していきます。
Bundle 'Shougo/vimfiler'
Bundle 'Shougo/unite.vim'
Bundle 'Shougo/vimproc'
Bundle 'Shougo/vimshell'
Bundle 'Shougo/neocomplcache'
Bundle 'mattn/zencoding-vim'
Bundle 'majutsushi/tagbar'
Bundle 'taku-o/vim-screenshot'
Bundle 'slimv.vim'
Bundle 'thinca/vim-ref.git'
.
.
.


参考URL

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2