web-dev-qa-db-ja.com

Vundle-プラグインはインストールされていますがロードされていません

Ubuntuボックスに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プラグインを使用するのはこれが初めてです。

7
CS Student
  1. /etc/vimでは何もしないでください

    • Vimは厳密なロード順序に従い、デフォルトのファイルやディレクトリをいじるとVimが不安定になるためです。あなたがするかもしれないことのいくつかはうまくいくかもしれません、他はうまくいかないかもしれません…それはあなたとあなたの運だけです。

    • 後続のアップグレードでは、変更の一部またはすべてが上書きされ、意味がなくなるためです。

    • およびすべてのオペレーティングシステムでのグッドプラクティスであるため、—および、まあ…実生活でも—your$HOMEyour構成を行う。

  2. ~/.vim/~/.vimrcを自分で作成する必要があります。

    それは正常に動作するため、Vimはインストール時に$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を少なくとも数回フォローしてください。
  • :helpの最初の30行ほどを読んで、これまでに学習した中で最も便利なVimコマンドであるため、メモリにコミットします。
  • 少なくとも:help usr_01.txtを通して:help usr_08.txtを読んでください。

全体に慣れるまでは、プラグイン(および不要なプラグインマネージャー)に近づかないようにして、Vim自体に集中できるようにすることをお勧めします。

5
romainl