Vundle-플러그인이 설치되었지만로드되지 않음

CS 학생

내 우분투 상자에 vundle을 설치했지만 vim을로드 할 때 플러그인이로드되지 않습니다. 내 vimrc :

runtime! debian.vim
set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
"set rtp+=~/.vim/bundle
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'reedes/vim-thematic'
Plugin 'bling/vim-airline'

" >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList          - list configured plugins
" :PluginInstall(!)    - install (update) plugins
" :PluginSearch(!) foo - search (or refresh cache first) for foo
" :PluginClean(!)      - confirm (or auto-approve) removal of unused plugins
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line









" """""""""""""""""""""""""""""""""""""ORIGINAL STUFF BELOW"""""""



" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
" the call to :runtime you can find below.  If you wish to change any of those
" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
" will be overwritten everytime an upgrade of the vim packages is performed.
" It is recommended to make changes after sourcing debian.vim since it alters
" the value of the 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages available in Debian.
" runtime! debian.vim

" Uncomment the next line to make Vim more Vi-compatible
" NOTE: debian.vim sets 'nocompatible'.  Setting 'compatible' changes numerous
" options, so any other options should be set AFTER setting 'compatible'.
"set compatible

" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
"if has("syntax")
syntax on
set number
set ruler
"endif

" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark

" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
"  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
"endif

" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
"  filetype plugin indent on
"endif

" The following are commented out as they cause vim to behave a lot
" differently from regular Vi. They are highly recommended though.
"set showcmd        " Show (partial) command in status line.
"set showmatch      " Show matching brackets.
"set ignorecase     " Do case insensitive matching
"set smartcase      " Do smart case matching
"set incsearch      " Incremental search
"set autowrite      " Automatically save before commands like :next and :make
"set hidden     " Hide buffers when they are abandoned
"set mouse=a        " Enable mouse usage (all modes)

" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
  source /etc/vim/vimrc.local
endif

: PluginList 출력 ...

" My Plugins                        
Plugin 'gmarik/Vundle.vim'                                           
Plugin 'reedes/vim-thematic'                                          
Plugin 'bling/vim-airline' 

다른 설정을 변경하지 않았습니다. Vim 플러그인을 사용하려는 첫 번째 시도입니다.

Romainl
  1. 에서 아무것도하지 마십시오 /etc/vim

    • Vim은 엄격한 로딩 순서를 따르고 기본 파일과 디렉토리를 엉망으로 만들면 Vim이 불안정 해집니다. 당신이 할 수있는 일들 중 일부는 효과가있을 수도 있고, 다른 것들은 그렇지 않을 수도 있습니다. 그것은 오직 당신과 당신의 운입니다.

    • 후속 업그레이드는 변경 사항의 일부 또는 전체를 덮어 쓰므로 의미가 없습니다.

    • 그것은 관습이기 때문에 그리고 좋은 연습을 마다 너무 현실에서 잘 ... - - 할 수있는 운영 체제 사용자 의 구성을 당신은 $HOME .

  2. 당신 ~/.vim/~/.vimrc당신 자신을 만들어야합니다 .

    이 바르게 행동하기 때문에, 빔은하지 않습니다 아무것도 당신에 $HOME따라 설치. 사용자 정의에 필요한 파일과 디렉토리를 만드는 것은 사용자의 책임입니다.

    $ cd
    $ mkdir .vim
    $ touch .vimrc
    

    이때 빈 ~/.vim디렉터리와 빈 ~/.vimrc파일 이 있어야 합니다. 이미 ~/.vim/디렉토리 가있는 것 같으므로 해당 단계를 건너 뛸 수 있습니다.

  3. 되돌리기 /etc/vim는 자연 그대로의 상태로.

    에 추가 한 모든 항목을 제거합니다 /etc/vim. 확실하지 않은 경우 vim-gnome 또는 vim-gtk 패키지를 제거하고 다시 설치하면 도움이 될 것입니다.

  4. 에서 모든 구성을 다시 실행하십시오 $HOME.

    Vundle 사용을 고집한다면 ~/.vimrc다음과 같은 모습이어야합니다.

    filetype off
    
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    
    Plugin 'gmarik/Vundle.vim'
    Plugin 'reedes/vim-thematic'
    Plugin 'bling/vim-airline'
    
    call vundle#end()
    
    filetype plugin indent on
    
  5. 실제로 플러그인을 설치하십시오.

    다음 ~/.vimrc과 같이 디스크에 쓰고 Vim을 종료 하십시오 .

    :wq
    

    다음 명령을 실행하십시오.

    $ vim +PluginInstall
    

Vim을 처음 사용하는 경우, 특히 UNIX 명령에 대해 잘 알지 못하는 경우 유사하게 무의미한 플러그인 관리자를 사용하여 설치하려는 무의미한 플러그인을 사용하는 것보다 시간과 두뇌 세포를 더 생산적으로 사용할 수있는 방법을 찾아야합니다. -선. 다음은 제안 사항의 전체 목록이 아닙니다.

  • 일반적으로 명령 줄과 UNIX 방식에 더 익숙해집니다.
  • $ vimtutor적어도 몇 번은 따르십시오 .
  • 처음 30 개 정도의 줄을 읽고 :help기억할 수있는 가장 유용한 Vim 명령입니다.
  • 읽기 :help usr_01.txt, 적어도 통해 :help usr_08.txt.

모든 것에 익숙해 질 때까지 Vim 자체에 집중할 수 있도록 플러그인 (및 불필요한 플러그인 관리자)을 멀리하는 것이 좋습니다.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Gem이 설치되었지만로드되지 않음

분류에서Dev

각 플러그인이 설치되었지만 최종 스레드 그룹이 표시되지 않음

분류에서Dev

Flutter 플러그인이 이미 설치되었지만 설치되지 않은 것으로 표시됨

분류에서Dev

vim 색상이 자동으로로드되지 않음 (Vundle 충돌 가능성 있음)

분류에서Dev

Nvidia 드라이버가 설치되었지만 사용되지 않음

분류에서Dev

Nvidia 드라이버가 설치되었지만 사용되지 않음

분류에서Dev

Flutter Doctor : Flutter 및 dart 플러그인이 설치되지 않음

분류에서Dev

Eclipse PTD Symfony 플러그인이 설치되지 않음

분류에서Dev

Android 앱이 설치되었지만 표시되지 않음

분류에서Dev

PhoneGap 빌드 : SocialSharing 플러그인이로드되지 않음

분류에서Dev

JQuery 플러그인 파일이로드되지만 작동하지 않음

분류에서Dev

Durandal 플러그인이로드되지 않음

분류에서Dev

vim 플러그인이로드되지 않음 : mac

분류에서Dev

Ubuntu Matlab이 설치되었지만 작동하지 않음

분류에서Dev

gedit`Comment Code` 플러그인이 설치되었지만 작동하지 않습니다.

분류에서Dev

Kong-사용자 정의 플러그인 반환 : custom-plugin 플러그인이 활성화되었지만 설치되지 않았습니다.

분류에서Dev

CakePHP DebugKit이로드되었지만 표시되지 않음

분류에서Dev

최신 Java 버전이 설치되었지만 인식되지 않음

분류에서Dev

Sonatype Nexus LDAP 플러그인이 설치되었지만 활성화 할 수 없음

분류에서Dev

PyOWM이 설치되었지만 인식되지 않습니까?

분류에서Dev

Windows XP + 새 마더 보드 => OS가 설치되었지만 시스템이 부팅되지 않음

분류에서Dev

Grails 용 Vaadin 플러그인이 설치되지만 코드 완성이 작동하지 않습니다.

분류에서Dev

커널이 설치되었지만 16.04.4 LTS가 실행되지 않음

분류에서Dev

SSHD 연결이 로그에 설정되었지만 마지막 로그인시 표시되지 않음

분류에서Dev

플러그인 설치 후 Eclipse Mars가 시작되지 않음

분류에서Dev

Node.js 모듈이 전역으로 설치되었지만 표시되지 않음 (Windows)

분류에서Dev

Cordova InAppBrowser 플러그인이 설치되지 않았습니다.

분류에서Dev

cakephp3-플러그인 클래스 테이블이로드되지 않음

분류에서Dev

Colorbox가로드되었지만 이미지가 표시되지 않음

Related 관련 기사

  1. 1

    Gem이 설치되었지만로드되지 않음

  2. 2

    각 플러그인이 설치되었지만 최종 스레드 그룹이 표시되지 않음

  3. 3

    Flutter 플러그인이 이미 설치되었지만 설치되지 않은 것으로 표시됨

  4. 4

    vim 색상이 자동으로로드되지 않음 (Vundle 충돌 가능성 있음)

  5. 5

    Nvidia 드라이버가 설치되었지만 사용되지 않음

  6. 6

    Nvidia 드라이버가 설치되었지만 사용되지 않음

  7. 7

    Flutter Doctor : Flutter 및 dart 플러그인이 설치되지 않음

  8. 8

    Eclipse PTD Symfony 플러그인이 설치되지 않음

  9. 9

    Android 앱이 설치되었지만 표시되지 않음

  10. 10

    PhoneGap 빌드 : SocialSharing 플러그인이로드되지 않음

  11. 11

    JQuery 플러그인 파일이로드되지만 작동하지 않음

  12. 12

    Durandal 플러그인이로드되지 않음

  13. 13

    vim 플러그인이로드되지 않음 : mac

  14. 14

    Ubuntu Matlab이 설치되었지만 작동하지 않음

  15. 15

    gedit`Comment Code` 플러그인이 설치되었지만 작동하지 않습니다.

  16. 16

    Kong-사용자 정의 플러그인 반환 : custom-plugin 플러그인이 활성화되었지만 설치되지 않았습니다.

  17. 17

    CakePHP DebugKit이로드되었지만 표시되지 않음

  18. 18

    최신 Java 버전이 설치되었지만 인식되지 않음

  19. 19

    Sonatype Nexus LDAP 플러그인이 설치되었지만 활성화 할 수 없음

  20. 20

    PyOWM이 설치되었지만 인식되지 않습니까?

  21. 21

    Windows XP + 새 마더 보드 => OS가 설치되었지만 시스템이 부팅되지 않음

  22. 22

    Grails 용 Vaadin 플러그인이 설치되지만 코드 완성이 작동하지 않습니다.

  23. 23

    커널이 설치되었지만 16.04.4 LTS가 실행되지 않음

  24. 24

    SSHD 연결이 로그에 설정되었지만 마지막 로그인시 표시되지 않음

  25. 25

    플러그인 설치 후 Eclipse Mars가 시작되지 않음

  26. 26

    Node.js 모듈이 전역으로 설치되었지만 표시되지 않음 (Windows)

  27. 27

    Cordova InAppBrowser 플러그인이 설치되지 않았습니다.

  28. 28

    cakephp3-플러그인 클래스 테이블이로드되지 않음

  29. 29

    Colorbox가로드되었지만 이미지가 표시되지 않음

뜨겁다태그

보관