mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-29 02:34:17 -05:00
21 lines
389 B
Nix
21 lines
389 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "codex";
|
|
package = "codex-nvim";
|
|
description = "A Copilot-style coding assistant integration for Neovim.";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
dependencies = [
|
|
"codex"
|
|
];
|
|
|
|
settingsExample = {
|
|
keymaps = {
|
|
toggle = "<leader>ac";
|
|
};
|
|
border = "rounded";
|
|
model = "gpt-5-codex";
|
|
};
|
|
}
|