mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
13 lines
288 B
Nix
13 lines
288 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";
|
||
|
extraPlugins = [ pkgs.vimPlugins.vim-endwise ];
|
||
|
|
||
|
# Yes it's really not configurable
|
||
|
options = {};
|
||
|
}
|