From 369134dd494b3111ec2d3f4de88e1be1b87fe539 Mon Sep 17 00:00:00 2001 From: Kacper Marzecki Date: Thu, 27 Mar 2025 00:26:44 +0100 Subject: [PATCH] GP mappings + json format mapping --- nvim/lua/config/keymaps.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nvim/lua/config/keymaps.lua b/nvim/lua/config/keymaps.lua index 20a71f6..bf77d37 100644 --- a/nvim/lua/config/keymaps.lua +++ b/nvim/lua/config/keymaps.lua @@ -139,3 +139,12 @@ print("dupsko") -- exec lua map("v", "ce", "'<,'>lua", { desc = "exec Lua" }) + +-- GP +map("n", "agf", "GpChatFinder", { desc = "gp chat finder" }) +map("n", "agt", "GpChatToggle", { desc = "gp chat toggle" }) +map("n", "agn", "GpChatNew", { desc = "gp chat new " }) +map("n", "agr", "GpChatRespond", { desc = "gp chat respond" }) + +-- JSON FORMAT +map("n", "cjf", "%!jq .", { desc = "Json Format" })