vim-endwise: init

This commit is contained in:
Pedro Alves 2021-02-21 14:02:06 +00:00
parent 031e1c35f2
commit aa9ea48962
2 changed files with 13 additions and 0 deletions

View file

@ -12,6 +12,7 @@
./utils/commentary.nix
./utils/startify.nix
./utils/goyo.nix
./utils/endwise.nix
./languages/treesitter.nix

12
plugins/utils/endwise.nix Normal file
View file

@ -0,0 +1,12 @@
{ 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 = {};
}