vim → nvim
perrotta.dev·4d
📝Neovim
Preview
Report Post

I am piloting a transition from vim to nvim.

Here is the least disruptive way I found to accomplish that.

First, install neovim.

brew install neovim

Now, create ~/.config/nvim/init.lua. I decided to populate it based on my original ~/.vimrc, without attempting to share configuration settings between the two.

Multiple iterations with a LLM agent helped it achieve a decent shape, removing redundant settings and replacing some native VimL plugins with Lua ones.

The result: init.lua.

Some notable changes:

  • switch the package manager from vim-plug to lazy.nvim
  • remove vim-sensible
  • rewrite `just_one_space…

Similar Posts

Loading similar posts...