{"id":32657402,"url":"https://github.com/al3x-13/undefined.nvim","last_synced_at":"2026-05-06T10:33:00.132Z","repository":{"id":318800169,"uuid":"1076551357","full_name":"al3x-13/undefined.nvim","owner":"al3x-13","description":"Dark colorscheme for neovim","archived":false,"fork":false,"pushed_at":"2025-10-19T00:21:27.000Z","size":221,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T12:02:11.525Z","etag":null,"topics":["colorscheme","neovim","neovim-colorscheme","neovim-theme","vim"],"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/al3x-13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-10-15T02:54:59.000Z","updated_at":"2025-10-19T00:21:31.000Z","dependencies_parsed_at":"2025-10-16T00:38:21.642Z","dependency_job_id":"85b52271-cc72-4584-8669-6483654925b3","html_url":"https://github.com/al3x-13/undefined.nvim","commit_stats":null,"previous_names":["al3x-13/undefined.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/al3x-13/undefined.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3x-13%2Fundefined.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3x-13%2Fundefined.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3x-13%2Fundefined.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3x-13%2Fundefined.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/al3x-13","download_url":"https://codeload.github.com/al3x-13/undefined.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3x-13%2Fundefined.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32689143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["colorscheme","neovim","neovim-colorscheme","neovim-theme","vim"],"created_at":"2025-10-31T12:01:23.756Z","updated_at":"2026-05-06T10:33:00.120Z","avatar_url":"https://github.com/al3x-13.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# undefined.nvim\n\nDark colorscheme for neovim written in lua. Works with lsp, treesitter and lualine.\n\n![undefined colorscheme](https://raw.githubusercontent.com/al3x-13/undefined.nvim/refs/heads/main/undefined.png)\n\n__DISCLAIMER__: this was mostly vibe-coded.\n\n## Installation\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  \"al3x-13/undefined.nvim\",\n  lazy = false,\n  priority = 1000,\n  config = function()\n    vim.cmd([[colorscheme undefined]])\n  end,\n}\n```\n\nUsing [packer.nvim](https://github.com/wbthomason/packer.nvim):\n\n```lua\nuse {\n  \"al3x-13/undefined.nvim\",\n  config = function()\n    vim.cmd([[colorscheme undefined]])\n  end,\n}\n```\n\n## Configuration\n\nThe theme supports multiple variants and transparent backgrounds:\n\n```lua\nrequire(\"undefined\").setup({\n  variant = \"base\", -- \"base\", \"darker\", or \"light\"\n  transparent_background = false,\n})\n```\n\n### Variants\n\n- `base` - Original dark theme with balanced contrast (default)\n- `darker` - Darker variant for reduced eye strain\n- `light` - Light theme for daytime use\n\n### Switching Variants\n\nYou can switch between variants using commands:\n\n```vim\n:UndefinedVariant light  \" Switch to light variant\n:UndefinedVariant base   \" Switch to base variant\n:UndefinedVariant darker \" Switch to darker variant\n:UndefinedToggle         \" Toggle between base and darker\n```\n\nOr programmatically:\n\n```lua\nrequire(\"undefined\").set_variant(\"light\")\n```\n\n## Lualine\n\nTo use the lualine theme:\n\n```lua\nrequire('lualine').setup {\n  options = {\n    theme = 'undefined'\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fal3x-13%2Fundefined.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fal3x-13%2Fundefined.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fal3x-13%2Fundefined.nvim/lists"}