mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
80 lines
1.8 KiB
Nix
80 lines
1.8 KiB
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib; let
|
||
|
pluginName = "spider";
|
||
|
cfg = config.plugins.${pluginName};
|
||
|
helpers = import ../helpers.nix {inherit lib;};
|
||
|
in {
|
||
|
options.plugins.${pluginName} =
|
||
|
helpers.extraOptionsOptions
|
||
|
// {
|
||
|
enable = mkEnableOption pluginName;
|
||
|
|
||
|
package = helpers.mkPackageOption pluginName pkgs.vimPlugins.nvim-spider;
|
||
|
|
||
|
skipInsignificantPunctuation =
|
||
|
helpers.defaultNullOpts.mkBool true "Whether to skip unsignificant punctuation.";
|
||
|
|
||
|
keymaps = {
|
||
|
silent = mkOption {
|
||
|
type = types.bool;
|
||
|
description = "Whether ${pluginName} keymaps should be silent.";
|
||
|
default = false;
|
||
|
};
|
||
|
|
||
|
motions = mkOption {
|
||
|
type = types.attrsOf types.str;
|
||
|
description = ''
|
||
|
Mappings for spider motions.
|
||
|
The keys are the motion and the values are the keyboard shortcuts.
|
||
|
The shortcut might not necessarily be the same as the motion name.
|
||
|
'';
|
||
|
default = {};
|
||
|
example = {
|
||
|
w = "w";
|
||
|
e = "e";
|
||
|
b = "b";
|
||
|
g = "ge";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = let
|
||
|
setupOptions =
|
||
|
{
|
||
|
inherit (cfg) skipInsignificantPunctuation;
|
||
|
}
|
||
|
// cfg.extraOptions;
|
||
|
|
||
|
mappings =
|
||
|
mapAttrs'
|
||
|
(motion: key: {
|
||
|
name = key;
|
||
|
value = {
|
||
|
action = "function() require('spider').motion('${motion}') end";
|
||
|
lua = true;
|
||
|
inherit (cfg.keymaps) silent;
|
||
|
desc = "Spider-${motion}";
|
||
|
};
|
||
|
})
|
||
|
cfg.keymaps.motions;
|
||
|
in
|
||
|
mkIf cfg.enable {
|
||
|
extraPlugins = [cfg.package];
|
||
|
|
||
|
maps =
|
||
|
genAttrs
|
||
|
["normal" "operator" "visualOnly"]
|
||
|
(mode: mappings);
|
||
|
|
||
|
extraConfigLua = ''
|
||
|
require("${pluginName}").setup(${helpers.toLuaObject setupOptions})
|
||
|
'';
|
||
|
};
|
||
|
}
|