diff --git a/7.-Contoh-Custom-Plugins.md b/7.-Contoh-Custom-Plugins.md index 88a8a4f..18de55d 100644 --- a/7.-Contoh-Custom-Plugins.md +++ b/7.-Contoh-Custom-Plugins.md @@ -1289,6 +1289,16 @@ return{ keymap("n", "", ":silent only | Jaq", opts) return M end, +} +``` +- tambahkan lua/custom whichkey.lua +```lua +return{ +["r"] = { + name = "Run", + j = { "Jaq float", "Run With Jaq" }, +}, + } ``` summer: