반응형

단말기에서 vim 에디터를 자주 사용할 경우, 플러그인 설치를 해두면 편합니다.

특히, NERDTree는 디렉터리 목록을 보여주고 편집할 파일을 선택할 수 있어 편합니다.

 

mkdir ~/.vim/bundle

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

 

vi ~/.vimrc

set nocompatible " 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 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
Plugin 'altercation/vim-colors-solarized'
Plugin 'tpope/vim-fugitive'

call vundle#end() " required
filetype plugin indent on " required

syntax enable
set encoding=utf-8 " can edit korean

 

 

 

Vim 플러그인 설치는 다음 순서로 진행합니다.

:source % --> :PluginInstall

 

 

:NERDTree 명령어를 입력하면 디렉터리 목록을 확인하고 편집할 파일을 선택할 수 있습니다.

반응형

+ Recent posts