nvim: telescope remove glyph and emoji, add fd to system packages.

This commit is contained in:
Kevin Baensch 2025-07-02 16:44:43 +02:00
parent 4898ca8716
commit 82e1c38e63
Signed by: derped
SSH key fingerprint: SHA256:8/FSu/lmp3c1Z17Gml06JRIEHtDjhwdd7g6pBaHQWBc

View file

@ -1,6 +1,7 @@
{ {
lib, lib,
config, config,
pkgs,
... ...
}: }:
@ -45,33 +46,13 @@ lib.mkIf (lib.elem "nvim::telescope" config.machine.pkgs) {
desc = "Telescope Grep Files"; desc = "Telescope Grep Files";
}; };
} }
{
bind = "<leader>fc";
cmd = "<Cmd>Telescope glyph<CR>";
opts = {
desc = "Telescope find glyphs";
};
}
{
bind = "<leader>fe";
cmd = "<Cmd>Telescope emoji<CR>";
opts = {
desc = "Telescope find emoju";
};
}
]; ];
} }
{
lazy = true;
short = "ghassan0/telescope-glyph.nvim";
}
{
lazy = true;
short = "xiyaowong/telescope-emoji.nvim";
}
{ {
dir = vPlug: vPlug.plenary-nvim; dir = vPlug: vPlug.plenary-nvim;
lazy = true; lazy = true;
} }
]; ];
environment.systemPackages = [ pkgs.fd ];
} }