nvf/modules/plugins/repl/conjure/conjure.nix
Andreas Nilsson f7b556ab24
conjure option text update
Co-authored-by: Ching Pei Yang <59727193+horriblename@users.noreply.github.com>
2025-05-22 16:19:52 +02:00

19 lines
311 B
Nix

{
config,
pkgs,
lib,
...
}: let
inherit (lib.options) mkEnableOption;
inherit (lib.modules) mkIf;
cfg = config.vim.repl.conjure;
in {
options.vim.repl.conjure = {
enable = mkEnableOption "Conjure";
};
config = mkIf cfg.enable {
vim.startPlugins = [pkgs.vimPlugins.conjure];
};
}