Skip to content

Instantly share code, notes, and snippets.

@lujiacn
Last active November 8, 2023 18:04
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save lujiacn/520e3e8abfd1c1b39c30399222766ee8 to your computer and use it in GitHub Desktop.
Save lujiacn/520e3e8abfd1c1b39c30399222766ee8 to your computer and use it in GitHub Desktop.
vundle work with neovim

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")
@trprado
Copy link

trprado commented Jan 29, 2018

Not work to me, to solve I modified to:

set nocompatible               " be improved, required
filetype off                   " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.config/nvim/bundle/Vundle.vim
call vundle#begin()            " required
Plugin 'VundleVim/Vundle.vim'  " required

" ===================
" my plugins here
" ===================

" Plugin 'dracula/vim'


" ===================
" end of plugins
" ===================
call vundle#end()               " required
filetype plugin indent on       " required

@andersonbosa
Copy link

andersonbosa commented Jul 23, 2021

thank you!!! to let this public** it help me

@STORMFATH3R
Copy link

This helped me as well, thanks!

@Chien-Mu
Copy link

Chien-Mu commented Jul 7, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment