nvim: module cleanup

This commit is contained in:
Kevin Baensch 2024-12-21 21:31:34 +01:00
parent 47800e4173
commit 5e558ed273
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 2 additions and 6 deletions

View file

@ -7,13 +7,11 @@
lib.mkIf (lib.elem "nvim::fugitive" config.machine.pkgs) { lib.mkIf (lib.elem "nvim::fugitive" config.machine.pkgs) {
programs.nvim-lazy.lazyPlugins = [ programs.nvim-lazy.lazyPlugins = [
{ {
# short = "NeogitOrg/neogit";
lazy = true; lazy = true;
dir = vPlug: vPlug.neogit; dir = vPlug: vPlug.neogit;
dependencies = ( dependencies = (
vPlug: with vPlug; [ vPlug: with vPlug; [
# plenary-nvim plenary-nvim
"nvim-lua/plenary.nvim"
diffview-nvim diffview-nvim
telescope-nvim telescope-nvim
] ]

View file

@ -70,9 +70,7 @@ lib.mkIf (lib.elem "nvim::telescope" config.machine.pkgs) {
short = "xiyaowong/telescope-emoji.nvim"; short = "xiyaowong/telescope-emoji.nvim";
} }
{ {
short = "nvim-lua/plenary.nvim"; dir = vPlug: vPlug.plenary-nvim;
# 2d9b06177a975543726ce5c73fca176cedbffe9d
# dir = vPlug: vPlug.plenary-nvim;
lazy = true; lazy = true;
} }
]; ];