{"id":51325224,"url":"https://github.com/slavafyi/kintsugi.nvim","last_synced_at":"2026-07-01T17:33:00.263Z","repository":{"id":362748315,"uuid":"1260476585","full_name":"slavafyi/kintsugi.nvim","owner":"slavafyi","description":"A Neovim colorscheme port of the VSCode Kintsugi","archived":false,"fork":false,"pushed_at":"2026-06-05T17:40:00.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T19:21:28.728Z","etag":null,"topics":["colorscheme","neovim","neovim-colorscheme","neovim-theme","neovim-theme-dark","neovim-theme-light","nvim","vim"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","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/slavafyi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-06-05T14:33:10.000Z","updated_at":"2026-06-05T17:40:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/slavafyi/kintsugi.nvim","commit_stats":null,"previous_names":["slavafyi/kintsugi.nvim"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/slavafyi/kintsugi.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavafyi%2Fkintsugi.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavafyi%2Fkintsugi.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavafyi%2Fkintsugi.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavafyi%2Fkintsugi.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slavafyi","download_url":"https://codeload.github.com/slavafyi/kintsugi.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slavafyi%2Fkintsugi.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35017089,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","neovim-theme-dark","neovim-theme-light","nvim","vim"],"created_at":"2026-07-01T17:32:59.947Z","updated_at":"2026-07-01T17:33:00.256Z","avatar_url":"https://github.com/slavafyi.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kintsugi for Neovim\n\nA Neovim colorscheme port of the beautiful [VS Code Kintsugi] theme by Ahmed Hatem.\n\nThis project keeps the slim, direct-highlight architecture of [papercolor-theme-slim]: no Lua module, no runtime color builder, and no abstraction inside the colorscheme files. The theme is written in Vimscript because `colors/*.vim` is Neovim's native colorscheme format and direct `:highlight` definitions are simple, fast, and easy to override.\n\n## Variants\n\n`kintsugi-dark` is the primary/default variant.\n\n- `kintsugi-dark`\n- `kintsugi-dark-flared`\n- `kintsugi-light`\n- `kintsugi-light-flared`\n\nPreview SVGs are generated from [gallery/inputs/sample.rs](gallery/inputs/sample.rs) with `make gen-variants`.\n\n| `kintsugi-dark` | `kintsugi-dark-flared` |\n| --- | --- |\n| ![kintsugi-dark Rust preview](gallery/variants/kintsugi-dark.svg) | ![kintsugi-dark-flared Rust preview](gallery/variants/kintsugi-dark-flared.svg) |\n\n| `kintsugi-light` | `kintsugi-light-flared` |\n| --- | --- |\n| ![kintsugi-light Rust preview](gallery/variants/kintsugi-light.svg) | ![kintsugi-light-flared Rust preview](gallery/variants/kintsugi-light-flared.svg) |\n\n## Installation\n\nThis theme is a native Neovim colorscheme: it only provides `colors/*.vim`\nfiles and does not have a Lua `setup()` function.\n\n### `vim.pack`\n\n```lua\nvim.pack.add({\n  \"https://github.com/slavafyi/kintsugi.nvim\",\n})\n\nvim.cmd.colorscheme(\"kintsugi-dark\")\n```\n\n### `lazy.nvim`\n\n```lua\n{\n  \"slavafyi/kintsugi.nvim\",\n  lazy = false,\n  priority = 1000,\n  config = function()\n    vim.cmd.colorscheme(\"kintsugi-dark\")\n  end,\n}\n```\n\nUse any variant from the list above in place of `kintsugi-dark`.\n\n## Configuration\n\n```lua\nvim.o.termguicolors = true\nvim.cmd.colorscheme(\"kintsugi-dark\")\n\n-- Recommended on Neovim 0.11+.\nvim.o.winborder = \"rounded\"\n```\n\n## Customization\n\nUse normal Neovim highlight overrides. Define override autocommands before\nloading the colorscheme when possible.\n\n### Transparent background\n\n```lua\nvim.api.nvim_create_autocmd(\"ColorScheme\", {\n  pattern = \"kintsugi-*\",\n  callback = function()\n    vim.api.nvim_set_hl(0, \"Normal\", { bg = \"NONE\" })\n  end,\n})\n```\n\n### Override a color\n\n```lua\nvim.api.nvim_create_autocmd(\"ColorScheme\", {\n  pattern = \"kintsugi-light\",\n  callback = function()\n    vim.api.nvim_set_hl(0, \"Normal\", { bg = \"#f8f4ea\" })\n  end,\n})\n```\n\n### Third-party plugin support\n\n```lua\nvim.api.nvim_create_autocmd(\"ColorScheme\", {\n  pattern = \"kintsugi-*\",\n  callback = function()\n    vim.api.nvim_set_hl(0, \"ExamplePluginHighlightGroup\", { link = \"CursorLine\" })\n  end,\n})\n```\n\n## Credits\n\n- Colors ported from [VS Code Kintsugi] by Ahmed Hatem.\n- Vimscript colorscheme architecture based on [papercolor-theme-slim] by Samuel Roeca.\n\n[Neovim package]: https://neovim.io/doc/user/usr_05.html#_adding-a-package\n[VS Code Kintsugi]: https://github.com/ahatem/vscode-kintsugi\n[papercolor-theme-slim]: https://github.com/pappasam/papercolor-theme-slim\n[winborder]: https://neovim.io/doc/user/options.html#'winborder'\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslavafyi%2Fkintsugi.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslavafyi%2Fkintsugi.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslavafyi%2Fkintsugi.nvim/lists"}