No description
  • Lua 91.8%
  • Nix 7%
  • Nushell 1.2%
Find a file
2026-05-09 15:30:43 +02:00
after/lsp nixd: less auto completion, this used too much internet + cpu 2026-04-25 01:30:30 +02:00
data bible to plugin 2026-01-12 00:43:18 +01:00
lua/len dap: improved repl-completion + dap-terminal closing 2026-05-09 15:30:43 +02:00
luasnip luasnip/nix: added snippets 2026-04-27 22:02:54 +02:00
nix dap: improved repl-completion + dap-terminal closing 2026-05-09 15:30:43 +02:00
other nufmt config 2026-01-31 20:18:34 +01:00
scripts fixes 2026-04-17 15:24:42 +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 dap: improved repl-completion + dap-terminal closing 2026-05-09 15:30:43 +02:00
flake.nix dap: improved repl-completion + dap-terminal closing 2026-05-09 15:30:43 +02:00
init.lua added own direnv + improve jobs + no perf.enabled.lazy_load option 2026-04-25 01:02:06 +02: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 ];
}