Error detected while processing function vundle#installer#new and No bundles were selected for operation
J-A-S-0-N opened this issue · comments
J-4-S-0-N commented
so im trying to get some plugins on the vim btw i use the vim on window
syntax on
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
set noerrorbells
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set nu
set nowrap
set smartcase
set noswapfile
set nobackup
set undodir=~/.vim/undodir
set undofile
set incsearch
set colorcolumn=80
highlight ColorColumn ctermbg=0 guibg=lightgrey
call vundle#begin()
Plugin "gmarik/vundle"
Plugin "morhetz/gruvbox"
plugin "jremmen/vim-ripgrep"
Plugin "tpope/vim-fugitive"
Plugin "vim-utils/vim-man"
Plugin "git@github.com:kien/ctrlp.vim.git"
Plugin "git@github.com:Valloric/YouCompleteMe.git"
Plugin "mbill/undotree"
call vundle#end()
filetype plugin indent on
and when i enter :PluginInstall this error pop up "Error detected while processing function vundle#installer#new" and "No bundles were selected for operation"
Benjamen Meyer commented
Seeing the same thing on Ubuntu 20.04.1 with Vim 8.1 installed from Apt....
okay resolved mine - the instructions for the plugin I was using had Plug
instead of Plugin
.. fixed that and things worked.