{"id":23739089,"url":"https://github.com/m15a/nvim-srcerite","last_synced_at":"2025-09-04T13:33:18.264Z","repository":{"id":221312664,"uuid":"754008098","full_name":"m15a/nvim-srcerite","owner":"m15a","description":"Neovim colorscheme inspired by Srcery","archived":false,"fork":false,"pushed_at":"2024-05-13T04:08:24.000Z","size":212,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-13T05:22:46.932Z","etag":null,"topics":["colorscheme","neovim-plugin","nvim-highlite","srcery"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/m15a.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-02-07T08:09:48.000Z","updated_at":"2024-05-13T05:22:49.257Z","dependencies_parsed_at":"2024-03-18T01:48:29.412Z","dependency_job_id":"7fae815b-0754-4768-8e5c-8ff4385234b4","html_url":"https://github.com/m15a/nvim-srcerite","commit_stats":null,"previous_names":["m15a/nvim-srcerite"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m15a%2Fnvim-srcerite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m15a%2Fnvim-srcerite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m15a%2Fnvim-srcerite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m15a%2Fnvim-srcerite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m15a","download_url":"https://codeload.github.com/m15a/nvim-srcerite/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231965471,"owners_count":18453090,"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":["colorscheme","neovim-plugin","nvim-highlite","srcery"],"created_at":"2024-12-31T09:03:03.539Z","updated_at":"2024-12-31T09:05:03.194Z","avatar_url":"https://github.com/m15a.png","language":"Lua","readme":"\u003c!-- panvimdoc-ignore-start --\u003e\n\n# nvim-srcerite\n\nNeovim colorscheme inspired by [Srcery][1].\n\n[![CI][b1]][b2]\n[![Release][b3]][b4]\n[![Srcery][b5]][1]\n[![Highlite][b6]][2]\n\n[b1]: https://img.shields.io/github/actions/workflow/status/m15a/nvim-srcerite/ci.yml?logo=github\u0026label=CI\u0026style=flat-square\n[b2]: https://github.com/m15a/nvim-srcerite/actions/workflows/ci.yml\n[b3]: https://img.shields.io/github/release/m15a/nvim-srcerite.svg?style=flat-square\n[b4]: https://github.com/m15a/nvim-srcerite/releases\n[b5]: https://img.shields.io/badge/srcery-v1.0.4-ff5c8f.svg?style=flat-square\n[b6]: https://img.shields.io/badge/highlite-v4-0aaeb3.svg?style=flat-square\n\n![Screenshot](_assets/screenshot.png)\n\n\u003c!-- panvimdoc-ignore-end --\u003e\n\n\u003c!-- panvimdoc-include-comment\n\n```vimdoc\nMaintainer: NACAMURA Mitsuhiro \u003cm15@m15a.dev\u003e\nURL: https://github.com/m15a/nvim-srcerite\nLicense: BSD 3-Clause\n```\n\n--\u003e\n\n## Description\n\n`srcerite` is a Neovim colorscheme made with [nvim-highlite][2], the\nNeovim colorscheme generator. It is heavily inspired by [srcery-vim][3],\nlong time my favorite Vim colorscheme.\n\nAs its name implies, `srcerite` is a mix-in of `srcery` and `highlite`:\nit is intended to make the best use of `srcery`'s contrasting color\npalette and `highlite`'s semantic syntax highlighting.\n\n## Installation\n\nUse any package manager. It requires [nvim-highlite][2]. After\ninstallation, append the following line to your `init.lua`.\n\n```lua\nvim.cmd.colorscheme 'srcerite'\n```\n\n## Configuration\n\nYou can customize this colorscheme using the following global variables.\n\n### Options\n\n| Option                                                        | Description                        | Type | Default |\n| :-                                                            | :-                                 | :-   | :-      |\n| [srcerite_inverse_visual](#srcerite_inverse_visual)           | Inverse color of visual selection. | bool | `true`  |\n| [srcerite_inverse_search](#srcerite_inverse_search)           | Inverse color of search matches.   | bool | `false` |\n| [srcerite_inverse_match_paren](#srcerite_inverse_match_paren) | Inverse color of matched parens.   | bool | `false` |\n\n#### `srcerite_inverse_visual`\n\nReplace foreground and background colors with each other (i.e. inverse\nhighlighting) in visual selection (default: `true`).\n\n```lua\nvim.g.srcerite_inverse_vidual = false\n```\n\n#### `srcerite_inverse_search`\n\nEnable inverse highlighting of search matches (default: `false`).\n\n```lua\nvim.g.srcerite_inverse_search = true\n```\n\n#### `srcerite_inverse_match_paren`\n\nEnable inverse highlighting of matched parentheses (default: `false`).\n\n```lua\nvim.g.srcerite_inverse_match_paren = true\n```\n\n## Contributing\n\nIf you like this colorscheme, don't forget to add star to\n[nvim-highlite][2] and [srcery-vim][3]. Any contribution to this\nproject is also welcome.\n\n\u003c!-- panvimdoc-ignore-start --\u003e\n\n## License\n\n[BSD 3-Clause](LICENSE)\n\n\u003c!-- panvimdoc-ignore-end --\u003e\n\n[1]: https://srcery.sh/\n[2]: https://github.com/Iron-E/nvim-highlite\n[3]: https://github.com/srcery-colors/srcery-vim\n\n\u003c!-- vim: set tw=72 spell nowrap: --\u003e\n","funding_links":[],"categories":["Colorscheme","Lua"],"sub_categories":["Tree-sitter Supported Colorscheme","Assembly"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm15a%2Fnvim-srcerite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm15a%2Fnvim-srcerite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm15a%2Fnvim-srcerite/lists"}