{"id":39056710,"url":"https://github.com/ydkulks/cursor-dark.nvim","last_synced_at":"2026-01-17T18:01:04.649Z","repository":{"id":309492585,"uuid":"1035411761","full_name":"ydkulks/cursor-dark.nvim","owner":"ydkulks","description":"A dark color scheme for Neovim and Vim inspired by Cursor's dark and dark midnight themes.","archived":false,"fork":false,"pushed_at":"2025-11-23T08:43:46.000Z","size":160,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-23T10:18:28.037Z","etag":null,"topics":["color-scheme","cursor-theme","dark-theme","neovim","neovim-plugin","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ydkulks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-10T10:44:56.000Z","updated_at":"2025-11-23T08:43:50.000Z","dependencies_parsed_at":"2025-08-12T08:22:44.920Z","dependency_job_id":"dec91149-f23e-4cb6-9550-66c46eff0312","html_url":"https://github.com/ydkulks/cursor-dark.nvim","commit_stats":null,"previous_names":["ydkulks/cursor-dark.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ydkulks/cursor-dark.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydkulks%2Fcursor-dark.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydkulks%2Fcursor-dark.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydkulks%2Fcursor-dark.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydkulks%2Fcursor-dark.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ydkulks","download_url":"https://codeload.github.com/ydkulks/cursor-dark.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydkulks%2Fcursor-dark.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28514939,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T17:57:59.192Z","status":"ssl_error","status_checked_at":"2026-01-17T17:57:52.527Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["color-scheme","cursor-theme","dark-theme","neovim","neovim-plugin","vim-plugin"],"created_at":"2026-01-17T18:00:39.711Z","updated_at":"2026-01-17T18:01:04.635Z","avatar_url":"https://github.com/ydkulks.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cursor-dark.nvim\n\nA dark colorscheme for Neovim and Vim inspired by Cursor's dark and dark midnight themes.\n\n## ✨ Features\n\n- **Inspired by Cursor**: A faithful reproduction of the clean, low-contrast color palette found in the Cursor editor.\n- **Cross-Platform**: Works on both Neovim (with Lua configuration) and Vim (with Vimscript).\n- **Customizable**: Allows for a transparent background and other future customizations via a simple setup function.\n- **Tree-sitter Support**: Includes syntax highlighting for common Tree-sitter languages to provide a modern editing experience.\n- **Plugin Integration**: Provides sensible defaults and theme overrides for popular plugins like nvimdev/dashboard-nvim to ensure a consistent look.\n\n## 🎁 Bonous Features\n\n- **Terminal Color Scheme**:\n    - Alacritty\n    - Ghostty\n    - Terminal (Windows)\n\n## 📸 Screenshot\n\nHere's a preview of the colorscheme in action.\n\n- Cursor Dark\n\n![cursor-dark](./images/cursor-dark.png)\n\n- Cursor Dark Midnight\n\n![cursor-dark-midnight](./images/cursor-dark-midnight.png)\n\n## 📦 Installation\n\nUse your favorite plugin manager to install cursor-dark.nvim.\n\n- lazy.nvim\n\n```lua\n\nreturn {\n  -- Your other plugins...\n\n  {\n    \"ydkulks/cursor-dark.nvim\",\n    lazy = false,\n    priority = 1000,\n    config = function()\n      -- vim.cmd.colorscheme(\"cursor-dark-midnight\")\n      require(\"cursor-dark\").setup({\n        -- For theme\n        style = \"dark-midnight\",\n        -- For a transparent background\n        transparent = true,\n        -- If you have dashboard-nvim plugin installed\n        dashboard = true,\n      })\n    end,\n  },\n}\n```\n\n- vim-plug\n\n```vim\n\" In your .vimrc or init.vim\nPlug 'your-github-username/cursor-dark.nvim'\n\n\" After installing, add this to your configuration\ncolorscheme cursor-dark\n```\n\n- Manual (vim)\n    - Copy the files in `color/` and place them in `~/.vim/colors/` directory\n\n## ⚙️ Configuration\n\nYou can customize the colorscheme by passing a table of options to the setup function.\n\n\u003e [!Note]\n\u003e If the colors look odd, make sure you have you have configured the terminal's colorscheme to be\n\u003e the same colorscheme your using in Neovim\n\n```lua\nrequire(\"cursor-dark\").setup({\n  -- Set to `true` to make the background transparent\n  transparent = false,\n  -- Choose theme\n  style = \"dark-midnight\",\n})\n```\n\n## 📜 License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE.md) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fydkulks%2Fcursor-dark.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fydkulks%2Fcursor-dark.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fydkulks%2Fcursor-dark.nvim/lists"}