nix-community.nixvim/plugins/utils/endwise.nix
2023-01-25 00:03:26 +00:00

12 lines
279 B
Nix

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