Skip to content

Instantly share code, notes, and snippets.

@bew
Last active May 16, 2025 00:16
Show Gist options
  • Save bew/286c90ea69e3289df9953a6c833013e7 to your computer and use it in GitHub Desktop.
Save bew/286c90ea69e3289df9953a6c833013e7 to your computer and use it in GitHub Desktop.
let
nixvim = import (builtins.fetchGit {
url = "https://github.com/nix-community/nixvim";
ref = "nixos-24.11";
});
makeNixvim = nixvim.outputs.legacyPackages.${builtins.currentSystem}.makeNixvim;
nvim = makeNixvim {
colorschemes.gruvbox.enable = true;
};
in {
inherit nvim;
}
# Run with `nvim run -f mini-nvimnix-without-flakes.nix nvim` 😉
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment