added an antigravity plugin and custom keybind for integrated support

This commit is contained in:
venus
2026-08-14 04:08:16 -05:00
parent 999891e3a2
commit 84fa3b8363
2 changed files with 14 additions and 0 deletions

View File

@@ -86,6 +86,7 @@ vim.keymap.set("n", "<C-A>" ,"m'ggyG''" ,{ desc = "[Y]ank whole file" })
vim.keymap.set("n", "<leader>sr" ,[[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]] ,{ desc = "[S]earch/[R]eplace word under cursor" })
-- PLUGIN KEYBINDS
vim.keymap.set({ "n", "v" } ,"<leader>ag" ,"<cmd>Antigravity<cr>" ,{ desc = "Open Antigravity" })
vim.keymap.set({ "n", "v" } ,"<leader>aa" ,"<cmd>CodeCompanionActions<cr>" ,{ desc = "CodeCompanion - Actions" })
vim.keymap.set({ "n", "v" } ,"<leader>ac" ,"<cmd>CodeCompanionChat Toggle<cr>" ,{ desc = "CodeCompanion - Chat" })
vim.keymap.set({ "n", "v" } ,"<leader>ai" ,"<cmd>CodeCompanion<cr>" ,{ desc = "CodeCompanion - Inline" })