Do Not Think!!!

Posted
Filed under 01010101

Vundle 소개

Vundle 프로젝트 홈페이지 https://github.com/gmarik/vundle

KLDP Vundle 소개 글타래 http://kldp.org/node/125263

Vundle 설치 하기

1. vim 플러그인 디렉토리 만들기

[CODE]$ mkdir ~/.vim/bundle[/CODE]

2. Vundle 설치

[CODE]$ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle[/CODE]

3. Vundle 설정

.vimrc 에 아무 내용없이 아래 내용만 들어가도 됩니다.
[CODE]$ vi .vimrc
set nocompatible               " be iMproved
filetype off                   " required!

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

" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'

" My Bundles here:
"

" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
" ...

filetype plugin indent on     " required!
"
" Brief help
" :BundleList          - list configured bundles
" :BundleInstall(!)    - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!)      - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..[/CODE]

4. Vundle 사용하기

vi 화면에서
  • :BundleSearch 를 이용해서 설치 가능한 번들을 찾고
  • My Bundles here: 부분에 설치 할려는 번들을 추가한 후에
  • :BundleInstall 을 실행합니다.
[CODE]:BundleSearch
:BundleInstall[/CODE]