Neovim
Neovim is a modal text editor forked off of Vim in 2014. Being modal means that you do not simply type text on screen, but the behavior and functionality of the editor changes entirely depending on the mode.
The most common and most used mode, the "normal mode" for Neovim is to essentially turn your keyboard in to hotkeys with which you can navigate and manipulate text. Several modes exist, but two other most common ones are "insert mode" where you type in text directly as if it was a traditional text editor, and "visual mode" where you select text.
Neovim seeks to enable further community participation in its development and to make drastic changes without turning it in to something that is "not Vim". Neovim also seeks to enable embedding the editor within GUI applications.
The Neovim logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.
view the rest of the comments
Wait, packer is dead? Feels like I've been through 100 damned packed managers.
What should one use now then?
The notice on packer suggested to use either lazy or pckr
lazy.nvim: Most stable and maintained plugin manager for Nvim.
pckr.nvim: Spiritual successor of packer.nvim. Functional but not as stable as lazy.nvim.
As long as it still works for you, there is no need to switch. Resist the urge to follow the hype, it just means you'll spend less time doing something actually productive.
Lazy has a reference how to migrate to it, also this YouTube video is pretty helpful
Specifically lazy.nvim migration guide has guides for packer and paq.
Been using minpac since forever. It has all the minimal functionality and is a perfect dead project one doesn’t have to worry about.
One day I might switch to lazy, but so far I’m too lazy to.
Yeah I’ll stick with packer until some breaking change maybe happens with neovim in the future. I say this with no knowledge of the other two options, but everything with packer is so damn easy I can’t imagine lazy or pckr being any easier.