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

13 lines
288 B
Nix
Raw Normal View History

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