mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
17 lines
319 B
Nix
17 lines
319 B
Nix
{
|
|
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;
|
|
|
|
# Yes it's really not configurable
|
|
options = {};
|
|
}
|