nix-community.nixvim/plugins/utils/endwise.nix

18 lines
319 B
Nix
Raw Permalink Normal View History

{
lib,
pkgs,
...
} @ attrs: let
helpers = import ../helpers.nix {inherit lib;};
in
with helpers;
with lib;
mkPlugin attrs {
name = "endwise";
description = "Enable vim-endwise";
package = pkgs.vimPlugins.vim-endwise;
2021-02-21 14:02:06 +00:00
# Yes it's really not configurable
options = {};
}