mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-09 16:54:36 +02:00
27 lines
514 B
Nix
27 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;
|
||
|
};
|
||
|
}
|