added colorscheme default option
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
let
|
let
|
||||||
nixvimLib = nixvim.lib.${system};
|
nixvimLib = nixvim.lib.${system};
|
||||||
nixvim' = nixvim.legacyPackages.${system};
|
nixvim' = nixvim.legacyPackages.${system};
|
||||||
nixvimModule = opts: {
|
nixvimModule = { opts }: {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
module = import ./config; # import the module directly
|
module = import ./config; # import the module directly
|
||||||
# You can use `extraSpecialArgs` to pass additional arguments to your module files
|
# You can use `extraSpecialArgs` to pass additional arguments to your module files
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
inherit opts;
|
inherit opts;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
nvim = opts: nixvim'.makeNixvimWithModule (nixvimModule opts);
|
nvim = { opts }: nixvim'.makeNixvimWithModule (nixvimModule { inherit opts; });
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
checks = {
|
checks = {
|
||||||
|
|||||||
Reference in New Issue
Block a user