No description
  • Lua 94.3%
  • Nix 4.5%
  • Shell 1.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-06 14:05:54 +02:00
after/lsp bashls: use for zsh 2026-07-11 15:59:58 +02:00
data bible to plugin 2026-01-12 00:43:18 +01:00
lua/len keymaps: fix conflict 2026-09-06 13:28:32 +02:00
luasnip luasnip/nix: more systems 2026-08-17 20:36:20 +02:00
other nufmt config 2026-01-31 20:18:34 +01:00
scripts remove nushell 2026-06-27 12:15:17 +02:00
spell added spellfile for German 2025-12-25 14:54:54 +01:00
.gitignore gitignore: added /result 2026-05-06 23:27:22 +02:00
.stylua.toml term improvements 2025-07-07 08:47:33 +02:00
flake.lock nix: update 2026-09-06 14:05:54 +02:00
flake.nix flake: package variants as passthrough 2026-09-04 11:35:52 +02:00
init.lua better log 2026-07-28 15:35:39 +02:00
package.nix remove multicursor 2026-09-04 11:10:18 +02:00
README.md small change 2026-03-18 14:36:43 +01:00
shell.nix added shell.nix 2026-08-05 13:30:03 +02:00

Run directly

nix run "git+https://git.noah.rest/len/lenvim.git?ref=main&shallow=1"

Use in Nixos/Home-manager

flake.nix

{
    # ...
    inputs.nvim-config = {
      url = "git+https://git.noah.rest/len/lenvim.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 ];
}