feat: updated yumevim-nix configurations and added new default profile with lsp-only

This commit is contained in:
Ceferino Patino 2026-01-12 09:36:11 -06:00
commit 7570645dc6
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
5 changed files with 11 additions and 7 deletions

8
flake.lock generated
View file

@ -1179,11 +1179,11 @@
"treefmt-nix": "treefmt-nix_2"
},
"locked": {
"lastModified": 1765140109,
"narHash": "sha256-SGShOXby9gijLx/JQo4Q25O2CB4GL8XnaAOmUmY9JsU=",
"lastModified": 1768231993,
"narHash": "sha256-IQLjTLvnC3asLg8HL8AgDVbTEst/8cCsX2T/2s+mxRU=",
"ref": "main",
"rev": "673890204804f0ce7d88029a14cd8f9400d43a6f",
"revCount": 89,
"rev": "a50642252d14b14541e5ae0fcc38eaccf9eba7ea",
"revCount": 90,
"type": "git",
"url": "https://git.cpatino.com/c4patino/yumevim-nix"
},

View file

@ -10,6 +10,8 @@ in {
common = enabled;
shell = enabled;
};
cli.dev.neovim.variant = "minimal";
};
home.stateVersion = "25.11";

View file

@ -10,6 +10,8 @@ in {
common = enabled;
shell = enabled;
};
cli.dev.neovim.variant = "minimal";
};
home.stateVersion = "25.11";

@ -1 +1 @@
Subproject commit 673890204804f0ce7d88029a14cd8f9400d43a6f
Subproject commit a50642252d14b14541e5ae0fcc38eaccf9eba7ea

View file

@ -14,9 +14,9 @@ in {
options = mkOptionsWithNamespace base (with lib.types; {
enable = mkEnableOption "neovim";
variant = mkOption {
type = enum ["minimal" "full"];
type = enum ["minimal" "default" "full"];
description = "variation of yumevim to install";
default = "full";
default = "default";
};
});