nix-community.nixvim/plugins/by-name/wrapping/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
514 B
Nix
Raw Normal View History

2024-09-27 01:57:19 -06:00
{
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;
};
}