No description
  • Lua 94.8%
  • Nix 4.3%
  • Nushell 0.9%
Find a file
2026-03-24 22:51:22 +01:00
data bible to plugin 2026-01-12 00:43:18 +01:00
lua/len better use of nushell 2026-03-24 22:20:56 +01:00
nix use wrappers 2026-03-24 22:51:22 +01:00
other nufmt config 2026-01-31 20:18:34 +01:00
plugin hacky fix to make config confirm to plugin + normal 2026-03-17 21:12:29 +01:00
scripts use nu in scripts 2026-02-01 02:09:29 +01:00
snippets snippets: more nix template 2026-03-24 22:21:16 +01:00
spell added spellfile for German 2025-12-25 14:54:54 +01:00
.gitignore ignore lazy-lock.json (empty anyway) 2026-03-17 21:23:24 +01:00
.stylua.toml term improvements 2025-07-07 08:47:33 +02:00
flake.lock use wrappers 2026-03-24 22:51:22 +01:00
flake.nix use wrappers 2026-03-24 22:51:22 +01:00
init.lua hacky fix to make config confirm to plugin + normal 2026-03-17 21:12:29 +01:00
README.md small change 2026-03-18 14:36:43 +01: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 ];
}