dein.vim内でのプラグインのダウンロードができない
dein.vim内でプラグインのインストールができない
dein.vimを使用して記述する場面があり、プラグイン無しだと使いにくいと思い、dein.vimのダウンロード後に内部にプラグインのダウンロードを行ったところ下記のようなメッセージが表示され、プラグインがダウンロードされない状態です。
dein.vim内で実装しているコード
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/Users/ユーザー名/.cache/dein/repos/github.com/Shougo/dein.vim
" Required:
call dein#begin('/Users/ユーザー名/.cache/dein')
" Let dein manage dein
" Required:
call dein#add('/Users/ユーザー名/.cache/dein/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here like this:
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')
call dein#add('neoclide/coc.nvim')
call dein#add('dhruvasagar/vim-table-mode')
" Required:
call dein#end()
" Required:
filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
こちらのプラグインをアップロードさせようと思いましたが、出来ません。
[dein] Target plugins are not found.
[dein] You may have used the wrong plugin name, or all of the plugins are already installed.
Press ENTER or type command to continue
ダウンロードの際に:call dein#install( )を記述してみましたが、ダウンロードがされずに上記のような表記がされてしまいます。
色々調べてみましたが、原因が掴めない状況です。
もし、vimを使用している方や、プラグインの導入をdeinで使用している方がいらっしゃいましたら、ご教授頂きたいです、、
0