A custom neovim config using this template: breuerfelix/feovim.
If this repo is cloned locally:
nix run .
Run anywhere (if nix is installed):
nix run "github:soikr/meowvim" .
As an overlay:
# inputs from flakes
{ inputs, ... }: {
nixpkgs.overlays = [
inputs.meowvim.overlay
# or
(self: super: {
neovim = inputs.meowvim.packages.${self.system}.default;
})
];
}
nix flake update