No description
Find a file
2026-03-02 12:48:58 +01:00
data bible to plugin 2026-01-12 00:43:18 +01:00
lua/len jobs: preview buffers with job output 2026-03-02 12:48:58 +01:00
nix neovim -> lenvim + description in flake 2026-03-02 11:01:15 +01:00
other nufmt config 2026-01-31 20:18:34 +01:00
plugin Squash merge own_nix_wrapper into main 2026-02-21 00:45:34 +01:00
queries/typst bible: remove bibletopic + queries links 2025-12-23 16:57:58 +01:00
scripts use nu in scripts 2026-02-01 02:09:29 +01:00
snippets added better blockcomment snippets 2026-02-23 23:57:55 +01:00
spell added spellfile for German 2025-12-25 14:54:54 +01:00
.gitignore added spellfile for German 2025-12-25 14:54:54 +01:00
.stylua.toml term improvements 2025-07-07 08:47:33 +02:00
flake.lock Squash merge own_nix_wrapper into main 2026-02-21 00:45:34 +01:00
flake.nix neovim -> lenvim + description in flake 2026-03-02 11:01:15 +01:00
README.md updated readme 2026-02-21 00:54:56 +01:00

Run directly

nix run "git+https://git.noah.rest/len/nvim.git?ref=main"

Use in Nixos/Home-manager

flake.nix

{
    # ...
    inputs.nvim-config = {
      url = "git+https://git.noah.rest/len/nvim.git?ref=main&shallow=1";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    # ...
}

then in configuration.nix

#
{ pkgs, inputs, ... }:
{
  imports = [ inputs.nvim-config.nixosModules.default ];
}

or in home.nix

{ inputs, pkgs, ... }:
{
  imports = [ inputs.nvim-config.homeModules.default ];
}