Nvim : Remove whichkey plugin.
This commit is contained in:
parent
62023791fd
commit
f2734d0719
17
flake.lock
17
flake.lock
|
@ -801,22 +801,6 @@
|
||||||
"type": "github"
|
"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": {
|
"poetry2nixJobber": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
|
@ -867,7 +851,6 @@
|
||||||
"nvimTree": "nvimTree",
|
"nvimTree": "nvimTree",
|
||||||
"nvimTreesitter": "nvimTreesitter",
|
"nvimTreesitter": "nvimTreesitter",
|
||||||
"nvimTrouble": "nvimTrouble",
|
"nvimTrouble": "nvimTrouble",
|
||||||
"nvimWhichKey": "nvimWhichKey",
|
|
||||||
"poetry2nixJobber": "poetry2nixJobber",
|
"poetry2nixJobber": "poetry2nixJobber",
|
||||||
"stylix": "stylix"
|
"stylix": "stylix"
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,10 +118,6 @@
|
||||||
url = "github:folke/trouble.nvim";
|
url = "github:folke/trouble.nvim";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
nvimWhichKey = {
|
|
||||||
url = "github:folke/which-key.nvim";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Those are outputs (hosts, configurations) that can be produced by this whole config.
|
# Those are outputs (hosts, configurations) that can be produced by this whole config.
|
||||||
|
|
|
@ -36,7 +36,6 @@ in {
|
||||||
"${inputs.nvimTreesitter}"
|
"${inputs.nvimTreesitter}"
|
||||||
"${inputs.nvimTree}"
|
"${inputs.nvimTree}"
|
||||||
"${inputs.nvimTrouble}"
|
"${inputs.nvimTrouble}"
|
||||||
"${inputs.nvimWhichKey}"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
configs = [
|
configs = [
|
||||||
|
@ -80,7 +79,6 @@ in {
|
||||||
./module/key/Terminal.nix
|
./module/key/Terminal.nix
|
||||||
./module/key/Todo.nix
|
./module/key/Todo.nix
|
||||||
./module/key/Trouble.nix
|
./module/key/Trouble.nix
|
||||||
./module/key/Whichkey.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{ ... }: {
|
|
||||||
text = ''
|
|
||||||
-- Show keymap help.
|
|
||||||
rekey_normal("?", "<cmd>WhichKey<cr>")
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in a new issue