Last active
May 16, 2025 00:16
-
-
Save bew/286c90ea69e3289df9953a6c833013e7 to your computer and use it in GitHub Desktop.
Written as an answer to https://discourse.nixos.org/t/neovim-kickstart-without-flakes-or-home-manager/64327/2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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