2024-10-06 11:35:07 +00:00
|
|
|
{lib, ...}: let
|
2024-03-24 00:14:39 +00:00
|
|
|
inherit (lib.options) mkOption;
|
2024-10-06 11:35:07 +00:00
|
|
|
inherit (lib.types) bool;
|
|
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
2023-11-07 00:50:27 +00:00
|
|
|
in {
|
2023-06-07 11:28:27 +00:00
|
|
|
options.vim.utility.surround = {
|
2023-10-17 10:47:44 +00:00
|
|
|
enable = mkOption {
|
2024-03-24 00:14:39 +00:00
|
|
|
type = bool;
|
2023-10-17 10:47:44 +00:00
|
|
|
default = false;
|
2024-10-06 11:35:07 +00:00
|
|
|
description = ''
|
|
|
|
nvim-surround: add/change/delete surrounding delimiter pairs with ease.
|
|
|
|
Note that the default mappings deviate from upstreeam to avoid conflicts
|
|
|
|
with nvim-leap.
|
|
|
|
'';
|
2023-10-17 10:47:44 +00:00
|
|
|
};
|
2024-10-06 11:35:07 +00:00
|
|
|
setupOpts = mkPluginSetupOption "nvim-surround" {};
|
|
|
|
|
2023-10-17 10:47:44 +00:00
|
|
|
useVendoredKeybindings = mkOption {
|
2024-03-24 00:14:39 +00:00
|
|
|
type = bool;
|
2023-10-17 10:47:44 +00:00
|
|
|
default = true;
|
|
|
|
description = "Use alternative set of keybindings that avoids conflicts with other popular plugins, e.g. nvim-leap";
|
|
|
|
};
|
|
|
|
};
|
2023-06-07 11:28:27 +00:00
|
|
|
}
|