{"id":16348973,"url":"https://github.com/sheaf/groovy-lambda","last_synced_at":"2026-01-25T11:02:14.304Z","repository":{"id":143293359,"uuid":"279971823","full_name":"sheaf/groovy-lambda","owner":"sheaf","description":"VS Code color theme optimised for Haskell, based on Gruvbox Material.","archived":false,"fork":false,"pushed_at":"2022-04-17T15:53:33.000Z","size":145,"stargazers_count":19,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-18T13:33:32.083Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sheaf.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,"zenodo":null}},"created_at":"2020-07-15T20:32:04.000Z","updated_at":"2025-09-04T04:52:26.000Z","dependencies_parsed_at":"2023-04-12T07:02:54.138Z","dependency_job_id":null,"html_url":"https://github.com/sheaf/groovy-lambda","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sheaf/groovy-lambda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheaf%2Fgroovy-lambda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheaf%2Fgroovy-lambda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheaf%2Fgroovy-lambda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheaf%2Fgroovy-lambda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sheaf","download_url":"https://codeload.github.com/sheaf/groovy-lambda/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheaf%2Fgroovy-lambda/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28752367,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"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":[],"created_at":"2024-10-11T00:56:19.252Z","updated_at":"2026-01-25T11:02:14.295Z","avatar_url":"https://github.com/sheaf.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Groovy Lambda\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=sheaf.groovylambda\"\u003e\n    \u003cimg src=\"https://vsmarketplacebadge.apphb.com/version-short/sheaf.groovylambda.svg?style=flat-square\" alt=\"GroovyLambda VS Code marketplace version\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n__Groovy Lambda__ is a simple VS Code color theme optimised for __Haskell__, based on [__Gruvbox Material Dark__](https://github.com/sainnhe/gruvbox-material-vscode).\n\nSupports the TextMate scopes provided by the [__Language Haskell__](https://github.com/JustusAdam/language-haskell) VS Code extension:\n\n  * disambiguates between data constructors and types in data declarations,\n  * visually clear appearance of qualified names,\n  * distinguishes different uses of @: type application, record syntax or infix operator,\n  * special highlighting for record fields,\n  * highlights MagicHash and OverloadedLabels,\n  * underlines recognised GHC language extensions.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"img/screenshot.png\" alt=\"GroovyLambda example highlighting\"\u003e\n\u003c/p\u003e\n\n# Installation\n\nThe theme can be installed directly from VS Code: search for `Groovy Lambda` in the extensions, and install.    \nSee also the its [VS Code marketplace page](https://marketplace.visualstudio.com/items?itemName=sheaf.groovylambda).\n\n# Customisation\n\nTo change how something is highlighted, proceed as follows:\n\n  * While browsing code containing highlighting you'd like to change, start the TextMate scope inspector as follows:\n    - open the VS Code Command Palette (Ctrl+Shift+P),\n    - start typing \"Inspect Editor Tokens and Scopes\" and select this item from the dropdown menu.\n  * Click on the code whose highlighting you'd like to change; this will display the TextMate scopes associated to that piece of code. For instance, `if` in a Haskell source file is given the scope `keyword.control.if.haskell`.\n  * Open your `settings.json` file:\n    - open the VS Code Command Palette (Ctrl+Shift+P),\n    - start typing \"Open Settings (JSON)\" and select this item from the dropdown menu.\n  * Make the modifications by editing the value of `editor.tokenColorCustomizations` in your settings.\n    For instance, to highlight `if` and `then` in red and `else` in blue, one would write:\n\n```json\n    \"editor.tokenColorCustomizations\": {\n      \"textMateRules\": [\n        {\n          \"scope\": [ \"keyword.control.if\", \"keyword.control.then\" ],\n          \"settings\": {\n            \"foreground\": \"#ff0000\"\n          }\n        },\n        {\n          \"scope\": \"keyword.control.else\",\n          \"settings\": {\n            \"foreground\": \"#0000ff\"\n          }\n        }\n      ]\n    }\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsheaf%2Fgroovy-lambda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsheaf%2Fgroovy-lambda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsheaf%2Fgroovy-lambda/lists"}