Advertisement
Guest User

Untitled

a guest
Dec 30th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # ./configuration.nix
  2. environment.systemPackages =
  3. let nvimPackages = (import ./customisation/nvimPackages.nix pkgs);
  4. in nvimPackages ++ (with pkgs;
  5. [ wget
  6. ...
  7. # ./customisation/nvimPackages.nix
  8. let nvim = pkgs.neovim.override {
  9. vimAlias = true;
  10. configure = {
  11. customRC = let vimrc = builtins.readFile ./init.vim;
  12. in ''${vimrc}'';
  13. };
  14. };
  15. in with pkgs;
  16. [ nvim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement