Skip to content

Commit 98489cb

Browse files
authored
feat(completion): Add in codex.nvim (#1453)
* feat(completion): Add in codex.nvim * Update init.lua
1 parent 8325575 commit 98489cb

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
return {
2+
"johnseth97/codex.nvim",
3+
specs = {
4+
{
5+
"AstroNvim/astrocore",
6+
opts = {
7+
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+
opts = {
20+
keymaps = {}, -- Disable internal mapping
21+
},
22+
}

0 commit comments

Comments
 (0)