This flake uses nixCats-nvim to configure neovim. The advantage of using this over a configuration defined using nixvim is that only the plugin installation is handled through Nix and the rest of the configuration is done using Lua.
To run this nix flake simply run the following command
nix run github:lalit64/snowvimNote
You will need to install the nix package manager before you can run the previous command
Or you can use the package to add this flake to your setup like so:
{
inputs.neovim = {
url = "github:lalit64/snowvim";
inputs.nixpkgs.follows = "nixpkgs";
};
}And then install it by adding inputs.neovim.packages.${system}.default to your packages