From c7c42b168ab652d979362a1a3bf2e3a2ff9e616f Mon Sep 17 00:00:00 2001 From: Alexander Nortung Date: Tue, 17 Jan 2023 23:55:26 +0100 Subject: [PATCH] surround: package option --- plugins/utils/surround.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/utils/surround.nix b/plugins/utils/surround.nix index 716324d2..bf2b7d63 100644 --- a/plugins/utils/surround.nix +++ b/plugins/utils/surround.nix @@ -5,7 +5,7 @@ in with helpers; with lib; mkPlugin attrs { name = "surround"; description = "Enable surround.vim"; - extraPlugins = [ pkgs.vimPlugins.surround ]; + package = pkgs.vimPlugins.surround; options = {}; }