mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
26 lines
514 B
Nix
26 lines
514 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib.nixvim) defaultNullOpts;
|
|
in
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|
name = "wrapping";
|
|
originalName = "wrapping.nvim";
|
|
package = "wrapping-nvim";
|
|
|
|
maintainers = [ lib.maintainers.ZainKergaye ];
|
|
|
|
settingsOptions = {
|
|
notify_on_switch = defaultNullOpts.mkBool true ''
|
|
By default, wrapping.nvim will output a message to the
|
|
command line when the hard or soft mode is set.
|
|
'';
|
|
};
|
|
|
|
settingsExample = {
|
|
notify_on_switch = false;
|
|
};
|
|
}
|