No description
  • Lua 94.4%
  • Nix 4.3%
  • Shell 1.3%
Find a file
2026-07-08 09:30:04 +02:00
after/lsp prevent lsp-binary not found errors 2026-07-04 12:00:27 +02:00
data bible to plugin 2026-01-12 00:43:18 +01:00
lua/len keymaps/git: better for log/reflog 2026-07-08 09:30:04 +02:00
luasnip luasnip: added biblenote, remove latex stuff from markdown 2026-06-05 00:13:47 +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 flake: update 2026-07-08 09:30:04 +02:00
flake.nix flake: use stable nixpkgs 2026-06-02 04:54:21 +02:00
init.lua added own direnv + improve jobs + no perf.enabled.lazy_load option 2026-04-25 01:02:06 +02:00
package.nix added jj 2026-07-02 23:39:09 +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 ];
}