Neovim

From NixOS Wiki
Revision as of 18:41, 24 March 2020 by imported>P-h

Configure Neovim as the default Editor

Add this to your configuration.nix environment.variables.EDITOR = "nvim";

Set Neovim as vi and vim

 nixpkgs.overlays = [
   (self: super: {
     neovim = super.neovim.override {
       viAlias = true;
       vimAlias = true;
     };
   })
 ];

See Also

Vim