Files
cnix/home/modules/devtools/nixvim/plugins/comment.nix
2024-10-13 18:09:15 +02:00

24 lines
461 B
Nix

{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.userModules.devtools.nixvim.plugins.comment;
in {
options = {
userModules.devtools.nixvim.plugins.comment.enable = mkEnableOption "Enables Comment plugin for nixvim";
};
config = mkIf cfg.enable {
programs.nixvim.plugins.comment = {
enable = true;
settings = {
opleader.line = "<C-b>";
toggler.line = "<C-b>";
};
};
};
}