neovim

neovim 0.12.3

Vim text editor fork focused on extensibility and agility

<rendered-html><p>Neovim is a project that seeks to aggressively refactor Vim in order to:</p> <ul> <li>Simplify maintenance and encourage contributions</li> <li>Split the work between multiple developers</li> <li>Enable the implementation of new/modern user interfaces without any modifications to the core source</li> <li>Improve extensibility with a new plugin architecture</li> </ul> </rendered-html>

https://neovim.io
Apache License 2.0Vim License
main program: nvimprograms: nvim
Platforms (46)
i686-freebsdmipsel-netbsdx86_64-linuxm68k-linuxpowerpc-netbsdi686-linuxmicroblazeel-linuxarmv7l-linux
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  neovim
];
Ad-hoc shell
nix-shell -p neovim
Flake (nix run)
nix run nixpkgs#neovim