Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

WSL上でVundleがVimプラグインをインストールしてくれなかったけどsourceしたらとりあえず出来たのでメモ

$
0
0

 ただの対処法になります。Linux環境をWindows上のVMからWSLに移行するために、Vundle入れて.vimrc書いて、PluginInstallとやったのですが、どうにもプラグインをインストールしようとしない現象が発生しました。.vimrcに書いたの以下の通り

"for vundle to administrate pluginset nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()

Plugin 'VundleVim/Vundle.vim'"plugins
Plugin 'fatih/vim-go'
Plugin 'scrooloose/nerdtree'call vundle#end()

↑を書いてvimを再起動した後、PluginInstallした結果は以下の通り。

" Installing plugins to /home/daiching/.vim/bundle
Plugin 'VundleVim/Vundle.vim'
Helptags

どうもVundleVim/Vundle.vim以下のプラグインが読み込まれないようです。
そこで、vim上で:source .vimrc を実行して再度PluginInstallを実行すると以下の通り。

" Installing plugins to /home/daiching/.vim/bundle
Plugin 'VundleVim/Vundle.vim'
Plugin 'fatih/vim-go'          
Plugin 'scrooloose/nerdtree'
Helptags

できました。原因不明ですが、とりあえず対処できたので、ハマった方は是非。なお、私の設定が悪い等々あったらコメント欄でご指摘ください。


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>