From aa9ea48962128fa60891a7dc2ddf327ff28fb88d Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Sun, 21 Feb 2021 14:02:06 +0000 Subject: [PATCH] vim-endwise: init --- plugins/default.nix | 1 + plugins/utils/endwise.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 plugins/utils/endwise.nix diff --git a/plugins/default.nix b/plugins/default.nix index c6cea5db..f21fc785 100644 --- a/plugins/default.nix +++ b/plugins/default.nix @@ -12,6 +12,7 @@ ./utils/commentary.nix ./utils/startify.nix ./utils/goyo.nix + ./utils/endwise.nix ./languages/treesitter.nix diff --git a/plugins/utils/endwise.nix b/plugins/utils/endwise.nix new file mode 100644 index 00000000..c3c4c22d --- /dev/null +++ b/plugins/utils/endwise.nix @@ -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 = {}; +}