From 44039711aa8418037ef62201baeb7483390e584f Mon Sep 17 00:00:00 2001 From: Aditya Date: Wed, 6 Mar 2024 19:46:04 +0530 Subject: [PATCH] add plenary --- config/default.nix | 1 + config/utils/plenary.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 config/utils/plenary.nix diff --git a/config/default.nix b/config/default.nix index 63db42f..343bb61 100644 --- a/config/default.nix +++ b/config/default.nix @@ -66,5 +66,6 @@ ./utils/nvim-surround.nix ./utils/oil.nix ./utils/persistence.nix + ./utils/plenary.nix ]; } diff --git a/config/utils/plenary.nix b/config/utils/plenary.nix new file mode 100644 index 0000000..ad75fb0 --- /dev/null +++ b/config/utils/plenary.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + extraPlugins = with pkgs.vimPlugins; [ + plenary-nvim + ]; +}