This repository contains my Neovim configuration as a Nix flake.
Install Nix and run the following:
nix run github:desheffer/neovim-configYou can also try out this configuration by running it in a Docker container:
docker run -it --rm \
-e NIX_CONFIG='experimental-features = nix-command flakes' \
nixpkgs/nix \
nix run github:desheffer/neovim-configYou can use this repository in other flakes by adding it as an input:
{
inputs = {
neovim-config.url = "github:desheffer/neovim-config";
};
}Then, add the following to your Home Manager configuration:
[
neovim-config.homeManagerModules.neovim
{
programs.neovim-config.enable = true;
}
]