mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
17 lines
326 B
Nix
17 lines
326 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ attrs: let
|
|
helpers = import ../helpers.nix {inherit lib;};
|
|
in
|
|
with helpers.vim-plugin;
|
|
with lib;
|
|
mkVimPlugin attrs {
|
|
name = "endwise";
|
|
description = "vim-endwise";
|
|
package = pkgs.vimPlugins.vim-endwise;
|
|
|
|
# Yes it's really not configurable
|
|
options = {};
|
|
}
|