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 = {}; +}