Let's Programming/Editor - Vim

gVim 설치기 - (3) Plugin 연동 (vundle)

아르센 루팽 2017. 10. 2. 03:34

2017/08/27 - [Let's Programming/Editor - Vim] - gVim 설치기 - (2) 설정편

 

 

Vim-plug에 대해서 다른 글에 적긴 했는데, 아무래도 대세인 Vundle을 사용해보고 싶어서 Vundle로 전환하였습니다.

(최종적으로는 vundle를 사용하고 있습니다.)

 

 

1. Vundle 설치

 

VundleVim/Vundle.vim

Vundle, the plug-in manager for Vim. Contribute to VundleVim/Vundle.vim development by creating an account on GitHub.

github.com

Vundle을 설치하기 위해서 먼저 환경변수로 VIM 경로를 등록하였습니다. 이 과정은 필수는 아닙니다.  Vundle 홈페이지에 나온대로 기본 폴더를 사용하여도 됩니다.

 

git를 이용해서, 원하는 폴더에 Vundle을 내려받습니다.

 

 

2. Vundle 설정

다음과 같이 _vimrc에 추가해주면 Vundle에 대한 설정이 끝나고 Plugin을 설치할 수 있습니다.

 

set rtp+=$VIM/원하는 경로
call vundle#begin('$VIM/원하는 경로')

" Colorscheme
Plugin 'tomasr/molokai'
" Status
Plugin 'bling/vim-airline'
" File tree
Plugin 'scrooloose/nerdtree'
call vundle#end()

 

 

3. Vundel 관련 vimrc 설정

"========================================
"=== Plugin - Vundle
"========================================
set rtp+=$VIM/vimfiles/bundle/Vundle.vim/
call vundle#begin('$VIM/vimfiles/bundle')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Colorscheme
Plugin 'tomasr/molokai'
Plugin 'nanotech/jellybeans.vim'
" Status
Plugin 'bling/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
" File tree
Plugin 'scrooloose/nerdtree'
call vundle#end()

" Color scheme
"colorscheme molokai
"let g:molokai_original = 0
colorscheme jellybeans

" NerdTree Shortkey
map <leader>w :NERDTreeToggle<CR>

" Vim-airline
let g:airline#extensions#tabline#enabled = 1
set laststatus=2

 

 

반응형

'Let's Programming > Editor - Vim' 카테고리의 다른 글

Vim Airline에 Trailing이 보인다면?  (0) 2018.01.19
Vim 활용 - 키보드 맵핑  (1) 2017.10.02
gVim 설치기 - (3) Plugin 연동 (vim-plug)  (0) 2017.10.01
Vim 사용팁  (0) 2017.10.01
gVim 설치기 - (2) 설정편  (0) 2017.08.27