# codegeex.nvim **Repository Path**: sunn4room/codegeex.nvim ## Basic Information - **Project Name**: codegeex.nvim - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-05-31 - **Last Updated**: 2024-10-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # codegeex.nvim Neovim plugin for CodegeeX v3 ```lua -- lazy.nvim spec { "sunn4room/codegeex.nvim", -- url = "https://gitee.com/sunn4room/codegeex.nvim", keys = { { "", function() if require("codegeex").visible() then require("codegeex").confirm() else require("codegeex").complete() end end, mode = "i", }, { "", function() require("codegeex").cancel() end, mode = "i", }, }, opts = { timeout = 5000, -- request timeout highlight = "NonText", -- highlight group for suggestions ft2lang = { -- filetype to lang for codegeex request python = "Python", -- ... }, }, } ```