diff --git a/pkgsets/nvim/telescope.nix b/pkgsets/nvim/telescope.nix index bb28e3c..06f2ee0 100644 --- a/pkgsets/nvim/telescope.nix +++ b/pkgsets/nvim/telescope.nix @@ -1,6 +1,7 @@ { lib, config, + pkgs, ... }: @@ -45,33 +46,13 @@ lib.mkIf (lib.elem "nvim::telescope" config.machine.pkgs) { desc = "Telescope Grep Files"; }; } - { - bind = "fc"; - cmd = "Telescope glyph"; - opts = { - desc = "Telescope find glyphs"; - }; - } - { - bind = "fe"; - cmd = "Telescope emoji"; - opts = { - desc = "Telescope find emoju"; - }; - } ]; } - { - lazy = true; - short = "ghassan0/telescope-glyph.nvim"; - } - { - lazy = true; - short = "xiyaowong/telescope-emoji.nvim"; - } { dir = vPlug: vPlug.plenary-nvim; lazy = true; } ]; + + environment.systemPackages = [ pkgs.fd ]; }