{"id":29483639,"url":"https://github.com/devk0n/cmakex.nvim","last_synced_at":"2026-05-10T02:06:58.364Z","repository":{"id":299914624,"uuid":"1004621974","full_name":"devk0n/cmakex.nvim","owner":"devk0n","description":"CMake + Ninja build runner for Neovim with zero config","archived":false,"fork":false,"pushed_at":"2025-06-19T00:14:37.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-19T00:27:03.040Z","etag":null,"topics":["build-system","cmake","cpp","neovim","neovim-plugin","ninja"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devk0n.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-18T23:26:55.000Z","updated_at":"2025-06-19T00:14:40.000Z","dependencies_parsed_at":"2025-06-19T00:37:07.997Z","dependency_job_id":null,"html_url":"https://github.com/devk0n/cmakex.nvim","commit_stats":null,"previous_names":["devk0n/cmakex.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devk0n/cmakex.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devk0n%2Fcmakex.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devk0n%2Fcmakex.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devk0n%2Fcmakex.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devk0n%2Fcmakex.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devk0n","download_url":"https://codeload.github.com/devk0n/cmakex.nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devk0n%2Fcmakex.nvim/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265401026,"owners_count":23758932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build-system","cmake","cpp","neovim","neovim-plugin","ninja"],"created_at":"2025-07-15T04:01:03.187Z","updated_at":"2026-05-10T02:06:58.318Z","avatar_url":"https://github.com/devk0n.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cmakex.nvim\n\n🛠️ A fast, zero-config CMake + Ninja runner for Neovim.\n\n`cmakex.nvim` provides a simple set of commands to generate, build, run, and clean your C++ projects using CMake and Ninja — directly from Neovim.\n\n---\n\n## ✨ Features\n\n- `:Generate [Debug|Release]` — Configure your project with CMake\n- `:Build [Debug|Release]` — Compile your project using Ninja\n- `:Run` — Run the built executable in a terminal split\n- `:Clean` — Remove the build directory\n\nNo setup or config files required — works out of the box for most CMake projects.\n\n---\n\n## 🚀 Installation\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  \"devk0n/cmakex.nvim\",\n  cmd = { \"Generate\", \"Build\", \"Run\", \"Clean\" },\n  config = function()\n    require(\"cmakex\").setup()\n  end,\n}\n```\n\n## 📂 Requirements\n- CMake\n- Ninja\n- A `CMakeLists.txt` file with `project(...)` and `add_executable(...)`\n\n## 📦 Commands\n\n| Command     | Description                              |\n|-------------|------------------------------------------|\n| `:Generate` | Configure the project (default: Debug)   |\n| `:Build`    | Build the project with Ninja             |\n| `:Run`      | Run the generated executable             |\n| `:Clean`    | Remove the `build/` directory            |\n\n---\n\n## 🧠 Example `CMakeLists.txt`\n\n```cmake\ncmake_minimum_required(VERSION 3.15)\nproject(MyApp)\n\nadd_executable(MyApp main.cpp)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevk0n%2Fcmakex.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevk0n%2Fcmakex.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevk0n%2Fcmakex.nvim/lists"}