Archived
Watch
1
Fork
You've already forked nixvim
0
My Neovim configuration managed with nix
This repository has been archived on 2026-07-12. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • Nix 91.6%
  • Lua 8.4%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-12 09:37:17 +03:00
.forgejo/workflows feat(ci): add flake updater 2026-06-07 12:29:11 +03:00
config feat(oil): show hidden files 2026-07-09 20:38:08 +03:00
flake.lock chore: update flake.lock 2026-07-11 01:21:14 +00:00
flake.nix chore: flake cleanup from comments 2026-06-07 12:33:21 +03:00
README.md feat(docs): note about integration with NixOS repo 2026-07-12 09:37:17 +03:00

Artur's Nixvim

Note

Nixvim is now integrated with my NixOS configuration.

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.