No description
  • Lua 94.9%
  • Nix 3.4%
  • Vim Script 1.7%
Find a file
2026-08-04 13:49:41 +01:00
config feat: diagnostic symbols 2026-08-04 13:49:41 +01:00
lib feat: migrate all plugins 2026-07-29 16:51:27 +01:00
.editorconfig initial commit 2026-06-28 23:08:11 +01:00
.gitignore initial commit 2026-06-28 23:08:11 +01:00
flake.lock feat: limes 2026-07-29 18:03:52 +01:00
flake.nix feat: add packages.neovide 2026-08-01 20:47:34 +01:00
package.nix feat: limes 2026-07-29 18:03:52 +01:00
README.md Update README.md 2026-08-04 07:45:29 +01:00

nvimdots

This flake exposes the configuration as both a package and Nixvim modules.

Branches

# flake.nix
{
  inputs = {
    nvimdots.url = "github:js0ny/nvimdots/nixvim";
  };
}

Install with packages

{
  # or home.packages
  environment.systemPackages = [  inputs.nvimdots.packages.${pkgs.stdenv.hostPlatform.system}.default   ];
}

NixOS Module

{
  imports = [ inputs.nvimdots.nixosModules.default ];

  programs.nixvim = {
    enable = true;

    # Existing preset values need an explicit module-system override.
    globalOpts.number = lib.mkForce false;
  };
}

Home Manager Module

{
  imports = [ inputs.nvimdots.homeModules.default ];

  programs.nixvim = {
    enable = true;
    globalOpts.number = lib.mkForce false;
  };
}