From 81eee03b7995c7a93f24fd38532dfd182c11a40f Mon Sep 17 00:00:00 2001 From: venus Date: Fri, 14 Aug 2026 04:42:07 -0500 Subject: [PATCH] removed antigravity, related keybind, and removed old codecompanion keybinds --- lua/keybinds.lua | 8 +------- lua/plugins/antigravity.lua | 13 ------------- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 lua/plugins/antigravity.lua diff --git a/lua/keybinds.lua b/lua/keybinds.lua index 077b3ba..2495037 100644 --- a/lua/keybinds.lua +++ b/lua/keybinds.lua @@ -86,13 +86,7 @@ vim.keymap.set("n", "" ,"m'ggyG''" ,{ desc = "[Y]ank whole file" }) vim.keymap.set("n", "sr" ,[[:%s/\<\>//gI]] ,{ desc = "[S]earch/[R]eplace word under cursor" }) -- PLUGIN KEYBINDS -vim.keymap.set({ "n", "v" } ,"ag" ,"Antigravity" ,{ desc = "Open Antigravity" }) -vim.keymap.set({ "n", "v" } ,"aa" ,"CodeCompanionActions" ,{ desc = "CodeCompanion - Actions" }) -vim.keymap.set({ "n", "v" } ,"ac" ,"CodeCompanionChat Toggle" ,{ desc = "CodeCompanion - Chat" }) -vim.keymap.set({ "n", "v" } ,"ai" ,"CodeCompanion" ,{ desc = "CodeCompanion - Inline" }) -vim.keymap.set("v" ,"ad" ,"CodeCompanionChat Add" ,{ desc = "CodeCompanion - Add to Chat" }) --- Expand 'cc' into 'CodeCompanion' in the command line -vim.cmd([[cab cc CodeCompanion]]) +-- TODO move these to their respective plugin files (for lazy recognition) --spellcheck keybind to toggle on current buffer vim.keymap.set('n',"ze" ,"setlocal spell" ,{ desc = "enable spellecheck on buffer" }) diff --git a/lua/plugins/antigravity.lua b/lua/plugins/antigravity.lua deleted file mode 100644 index 944145b..0000000 --- a/lua/plugins/antigravity.lua +++ /dev/null @@ -1,13 +0,0 @@ -return { - "NakLast/antigravity-cli.nvim", - config = function() - require("antigravity").setup({ - -- You can override the default command here if needed - cmd = "agy", - width_ratio = 0.4, - height_ratio = 0.8, - border = "rounded", - style = "vsplit", - }) - end -}