Customizing Vim
pathogen.vim 설치
pathogen은 Vim plugin들을 관리해준다.
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
vimrc 편집
~/.vimrc
에 다음과 같은 내용 추가.
execute pathogen#infect()
syntax on
filetype plugin indent on
set number
plugins
~/.vim/bundle
에 설치하면 된다.
Comments