after install neovim nvim config file folder ~/.config/nvim
$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.config/nvim/bundle/Vundle.vim
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin("~/.config/nvim/bundle")
If you prefer not to have two "bundle" directories existing, you can modify the following content:
~/.config/nvim/bundle/Vundle.vim/autoload/vundle.vim
Change
$HOME/.vim/bundle
to$HOME/.config/nvim/bundle
.