Skip to content

Instantly share code, notes, and snippets.

@notgne2
Created December 23, 2019 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notgne2/a1a6f033edb6be265627a2f4c7696810 to your computer and use it in GitHub Desktop.
Save notgne2/a1a6f033edb6be265627a2f4c7696810 to your computer and use it in GitHub Desktop.
{
nixpkgs.overlays = [
(self: super: with super; rec {
neovim = super.neovim.overrideAttrs (oldAttrs: {
postInstall = ''
ln -s $out/bin/nvim $out/bin/vim
ln -s $out/bin/nvim $out/bin/vi
'';
});
})
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment