From b29645a441ed62fce0af8781c5c8b21ab6a372e0 Mon Sep 17 00:00:00 2001 From: Thomas Churchman Date: Mon, 22 Jul 2024 09:19:10 +0200 Subject: [PATCH] nvim: remove popup.nvim (see: https://github.com/nvim-lua/plenary.nvim/pull/209) --- config/home/cfg/nvim/default.nix | 1 - flakes/neovim/flake.nix | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/config/home/cfg/nvim/default.nix b/config/home/cfg/nvim/default.nix index 0b0a0c4..373f148 100644 --- a/config/home/cfg/nvim/default.nix +++ b/config/home/cfg/nvim/default.nix @@ -77,7 +77,6 @@ in # Identation guide. indent-blankline-nvim # Popup finder. - plugins.popup plugins.plenary plugins.telescope telescope-ui-select-nvim diff --git a/flakes/neovim/flake.nix b/flakes/neovim/flake.nix index 5207a89..59c1fc1 100644 --- a/flakes/neovim/flake.nix +++ b/flakes/neovim/flake.nix @@ -7,10 +7,6 @@ url = "github:nvim-lua/plenary.nvim"; flake = false; }; - nvimPopup = { - url = "github:nvim-lua/popup.nvim"; - flake = false; - }; nvimTelescope = { url = "github:nvim-telescope/telescope.nvim"; flake = false; @@ -57,7 +53,7 @@ flake-utils.lib.eachDefaultSystem (system: { plugins = with input; { - inherit nvimPlenary nvimPopup nvimTelescope + inherit nvimPlenary nvimTelescope nvimMonochrome nvimVimColorsPencil nvimPhoton nvimColorizerLua nvimMinimapVim nvimRegistersNvim nvimCompletionNvim nvimGitsignsNvim nvimLeapNvim; };