vim

Differences between Neovim and Vim

Configuration Files

In Vim, your configuration file is ~/.vimrc, with further configuration files in ~/.vim.

In Neovim, configuration files are located in ~/.config/nvim. There is also no ~/.nvimrc file. Instead, use ~/.config/nvim/init.vim.

You can import your Vim configuration directly into Neovim using this Unix command:

ln -s ~/.vimrc ~/.config/nvim/init.vim

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow