이 플러그인을 설치하려고 합니다.여기Centos 7 노트북의 Vim용. 플러그인 관리 Vundle을 설치하기 위해 따른 지침은 Github Vundle 페이지에서 따왔습니다.여기그런 다음 계속해서 github 페이지의 플러그인 설치 지침을 따르세요.
이것은 .vimrc
실제로 Github Vundle 페이지에서 가져온 내 파일의 모습입니다.
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()
" " alternatively, pass a path where Vundle should install plugins
" "call vundle#begin('~/some/path/here')
"
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
"
" " The following are examples of different formats supported.
" " Keep Plugin commands between vundle#begin/end.
" " plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" " plugin from http://vim-scripts.org/vim/scripts.html
" " Plugin 'L9'
" " Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" " git repos on your local machine (i.e. when working on your own plugin)
"Plugin 'file:///home/gmarik/path/to/plugin'
" " The sparkup vim script is in a subdirectory of this repo called vim.
" " Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" " Install L9 and avoid a Naming conflict if you've already installed a
" " different version somewhere else.
" " Plugin 'ascenator/L9', {'name': 'newL9'}
"
" " All of your Plugins must be added before the following line
"Adam - my plugins
Plugin 'itchyny/lightline.vim' "download from - https://github.com/itchyny/lightline.vim
call vundle#end() " required
filetype plugin indent on " required
" " 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
"-----------------------------------------------------------------------------------------
"show numbers on lines
"set number
".vimrc" 54L, 2126C 52,1 90%
파일을 저장하고 닫습니다. vim을 다시 열고 실행하면 :PluginInstall
아래와 같은 결과가 나오므로 설치가 진행되는 것 같습니다.
그런 다음 vim과 터미널을 닫고 모든 것을 다시 열었지만 상태 줄은 여전히 다음과 같았습니다.이것.
답변1
새로운 답변:
플러그인 구성 문제일 수도 있습니다. 플러그인을 추가해 보세요. set laststatus=2
자세한 .vimrc
내용은 다음을 참조하세요.https://github.com/itchyny/lightline.vim#introduction
이전 답변:
당신이 누락 된 것 같습니다 call vundle#begin()
:
예시를 확인해보세요https://github.com/VundleVim/Vundle.vim#quick-start
vundle#begin/end 사이에 플러그인 명령을 유지하세요.