mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 19:40:06 +02:00
This reverts commit b724085447
.
This commit is contained in:
parent
b724085447
commit
2d54272177
58 changed files with 258 additions and 94 deletions
|
@ -2,7 +2,7 @@
|
|||
with lib;
|
||||
let
|
||||
cfg = config.plugins.coq-nvim;
|
||||
helpers = import ../helpers.nix { inherit lib; };
|
||||
helpers = import ../helpers.nix { lib = lib; };
|
||||
plugins = import ../plugin-defs.nix { inherit pkgs; };
|
||||
|
||||
in
|
||||
|
@ -11,7 +11,11 @@ in
|
|||
plugins.coq-nvim = {
|
||||
enable = mkEnableOption "coq-nvim";
|
||||
|
||||
package = helpers.mkPackageOption "coq-nvim" pkgs.vimPlugins.coq-nvim;
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.vimPlugins.coq-vim;
|
||||
description = "Plugin to use for coq-nvim";
|
||||
};
|
||||
|
||||
installArtifacts = mkEnableOption "Install coq-artifacts";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue