My Neovim configuration managed with nix
  • Nix 90.9%
  • Lua 9.1%
Find a file
2026-06-22 01:21:15 +00:00
.forgejo/workflows feat(ci): add flake updater 2026-06-07 12:29:11 +03:00
config feat(conform): add rmd 2026-06-16 14:27:28 +03:00
flake.lock chore: update flake.lock 2026-06-22 01:21:15 +00:00
flake.nix chore: flake cleanup from comments 2026-06-07 12:33:21 +03:00
README.md feat(docs): add README 2026-06-07 13:30:38 +03:00

Artur's Nixvim

This repo contains my Nixvim configuration integrated within my NixOS.

To test my Nixvim as a standalone program run

nix run git+https://git.asannikov.com/artur/nixvim.git

On NixOS I add this to flake.nix:

{
...
inputs = {
  nixvim.url = "git+https://git.asannikov.com/artur/nixvim.git";
}
...

Then to use it as a package add this to, for example, packages.nix:

{ inputs, pkgs, ... }:
{
  home.packages = with pkgs; [
    ...
    inputs.nixvim.packages.${pkgs.system}.default
  ];
}

Credits

Kudos to Ahwxorg, whose simple config I used to build a standalone Nixvim.