We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8325575 commit 98489cbCopy full SHA for 98489cb
lua/astrocommunity/completion/codex-nvim/README.md
@@ -0,0 +1,7 @@
1
+# Codex.nvim
2
+
3
+OpenAI Codex plugin for Neovim
4
5
+For more information, please refer to:
6
7
+Repository: <https://github.com/johnseth97/codex.nvim>
lua/astrocommunity/completion/codex-nvim/init.lua
@@ -0,0 +1,22 @@
+return {
+ "johnseth97/codex.nvim",
+ specs = {
+ {
+ "AstroNvim/astrocore",
+ opts = {
+ mappings = {
8
+ n = {
9
+ ["<Leader>Oc"] = { function() require("codex").toggle() end, desc = "Toggle Codex popup" },
10
+ },
11
12
13
14
15
+ cmd = {
16
+ "Codex",
17
+ "CodexToggle",
18
19
20
+ keymaps = {}, -- Disable internal mapping
21
22
+}
0 commit comments