Skip to content

Instantly share code, notes, and snippets.

@notgne2
Created December 23, 2019 07:18
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/25ae989333e83b17a401741eb4fed487 to your computer and use it in GitHub Desktop.
Save notgne2/25ae989333e83b17a401741eb4fed487 to your computer and use it in GitHub Desktop.
{
nixpkgs.overlays = [
(self: super: with super; rec {
neovim = super.neovim.overrideAttrs (oldAttrs: {
buildCommand = oldAttrs.buildCommand + ''
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