vim 플러그인 관리자 Vundle 설치 및 설정 [회전]
2512 단어 Ubuntu
플러그인 관리자 Vundle 설치
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
프로비저닝
수정
~/.vimrc
:set nocompatible "
filetype off "
"
set rtp+=~/.vim/bundle/Vundle.vim
" vundle
call vundle#begin()
" Vundle
"call vundle#begin('~/some/path/here')
" Vundle Vundle,
Plugin 'VundleVim/Vundle.vim'
"
" Plugin vundle#begin end
" plugin GitHub
Plugin 'tpope/vim-fugitive'
" http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" GitHub Git
" Plugin 'git://git.wincent.com/command-t.git'
" git ( )
" Plugin 'file:///home/gmarik/path/to/plugin'
" sparkup vim vim 。
" , 。
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" L9
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
"
call vundle#end() "
filetype plugin indent on "
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
사용
플러그인 설치
vim
입력:PluginInstall
.:PluginInstall
명령은 .vimrc
파일에 열거된 모든 플러그인에 설치됩니다.:PluginInstall
에 지정된 플러그 인을 설치합니다.vim +PluginInstall +qall
..vimrc
에 set shell=/bin/bash
를 추가해야 합니다.사용되지 않은 플러그인 정리
vim
입력:PluginClean
vim +:PluginClean
.검색 플러그인
vim
입력:PluginSearch
vim +:PluginSearch
.이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PowerShell 기반 Ubuntu 시스템 사용 상세 정보본고는 주로 Ubuntu 16.04 LTS에 PowerShell을 설치하고 사용하는 방법을 소개한다.PowerShell Core는 마이크로소프트가 내놓은 크로스 플랫폼(Windows, Linux, macOS) 자동화...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.