Skip to content

Instantly share code, notes, and snippets.

@lujiacn
Last active November 8, 2023 18:04
Show Gist options
  • 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")
@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