반응형
1. vundle download
$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
2. vim resource 파일 수정
filetype off " required!
set shell=/bin/bash
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle
" required!
Plugin 'VundleVim/Vundle.vim'
" vim 하단에 파일 정보 띄우기
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
" ...
call vundle#end()
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..
3. Plugin 설치
$ vim
: PluginInstall
반응형
'개발, 웹, 블로그 > IT, 컴퓨터 상식' 카테고리의 다른 글
Ubuntu gstreamer 설치 (0) | 2023.06.26 |
---|---|
mac 시작 프로그램에 Script 실행시키 (0) | 2023.06.02 |
Ubuntu 20.04에서 deeptream dGPU 환경 docker 설치 Cheat Sheet (0) | 2023.06.02 |