Nvim : Remove whichkey plugin.

This commit is contained in:
Dmitry Voronin 2024-09-17 23:45:23 +03:00
parent 62023791fd
commit f2734d0719
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
4 changed files with 0 additions and 29 deletions

View file

@ -801,22 +801,6 @@
"type": "github"
}
},
"nvimWhichKey": {
"flake": false,
"locked": {
"lastModified": 1725088492,
"narHash": "sha256-FY0KM0F2keMCqB5QhwfGS4w2wQOOeCXgZEa3U7Q1Bek=",
"owner": "folke",
"repo": "which-key.nvim",
"rev": "bfec3d6bc0a9b0b2cb11644642f78c2c3915eef0",
"type": "github"
},
"original": {
"owner": "folke",
"repo": "which-key.nvim",
"type": "github"
}
},
"poetry2nixJobber": {
"inputs": {
"flake-utils": "flake-utils",
@ -867,7 +851,6 @@
"nvimTree": "nvimTree",
"nvimTreesitter": "nvimTreesitter",
"nvimTrouble": "nvimTrouble",
"nvimWhichKey": "nvimWhichKey",
"poetry2nixJobber": "poetry2nixJobber",
"stylix": "stylix"
}

View file

@ -118,10 +118,6 @@
url = "github:folke/trouble.nvim";
flake = false;
};
nvimWhichKey = {
url = "github:folke/which-key.nvim";
flake = false;
};
};
# Those are outputs (hosts, configurations) that can be produced by this whole config.

View file

@ -36,7 +36,6 @@ in {
"${inputs.nvimTreesitter}"
"${inputs.nvimTree}"
"${inputs.nvimTrouble}"
"${inputs.nvimWhichKey}"
];
configs = [
@ -80,7 +79,6 @@ in {
./module/key/Terminal.nix
./module/key/Todo.nix
./module/key/Trouble.nix
./module/key/Whichkey.nix
];
};
}

View file

@ -1,6 +0,0 @@
{ ... }: {
text = ''
-- Show keymap help.
rekey_normal("?", "<cmd>WhichKey<cr>")
'';
}