feat: added default profile to nixvim configurations with no obsidian entries
All checks were successful
ci / nix-fmt (push) Successful in 1m10s
All checks were successful
ci / nix-fmt (push) Successful in 1m10s
This commit is contained in:
parent
6738902048
commit
a50642252d
1 changed files with 14 additions and 4 deletions
18
flake.nix
18
flake.nix
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue