feat: added default profile to nixvim configurations with no obsidian entries
All checks were successful
ci / nix-fmt (push) Successful in 1m10s

This commit is contained in:
Ceferino Patino 2026-01-12 09:33:13 -06:00
commit a50642252d
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI

View file

@ -57,6 +57,12 @@
minimal = mkNixvimProfile {};
default = mkNixvimProfile {
languages = {
lsp.enable = true;
};
};
full = mkNixvimProfile {
languages = {
lsp.enable = true;
@ -74,10 +80,14 @@
formatter = treefmtEval.config.build.wrapper;
packages = {
default = nixvim'.makeNixvimWithModule minimal;
full = nixvim'.makeNixvimWithModule full;
};
packages =
builtins.mapAttrs
(name: config: nixvim'.makeNixvimWithModule config)
{
minimal = minimal;
default = default;
full = full;
};
}
);
}