
vim plugin 세팅
·
Setup Dev. Env./Vim
vim 설치 $ sudo apt-get install vim [sudo] password : git 설치 $ sudo apt-get install git .vim/bundle 경로에 폴더 생성 mkdir -p .vim/bundle mv Vundle.vim .vim/bundle 생성한 .vim/bundle 폴더 이동 $ cd ~/.vim/bundle vundle 설치 git clone https://github.com/VundleVim/Vundle.vim.git Vundle.vim 확인 $ ls -l 다른 경로에서 다운 후 복사 mv Vundle.vim .vim/bundle .vimrc 파일에 plugin 설정 추가 $ vim ~/.vimrc " VIM 플러그인 설치 목록 set rtp+=~/.vim/bu..