{"id":47265043,"url":"https://github.com/overcast-software/glnt-ts-mode","last_synced_at":"2026-03-29T09:00:37.719Z","repository":{"id":340188663,"uuid":"1163654159","full_name":"overcast-software/glnt-ts-mode","owner":"overcast-software","description":"emacs lsp-glint","archived":false,"fork":false,"pushed_at":"2026-02-23T18:44:08.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-24T00:49:26.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Emacs Lisp","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/overcast-software.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":null,"dco":null,"cla":null}},"created_at":"2026-02-22T00:01:16.000Z","updated_at":"2026-02-23T18:45:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/overcast-software/glnt-ts-mode","commit_stats":null,"previous_names":["overcast-software/lsp-glint"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/overcast-software/glnt-ts-mode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overcast-software%2Fglnt-ts-mode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overcast-software%2Fglnt-ts-mode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overcast-software%2Fglnt-ts-mode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overcast-software%2Fglnt-ts-mode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/overcast-software","download_url":"https://codeload.github.com/overcast-software/glnt-ts-mode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overcast-software%2Fglnt-ts-mode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31138398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-29T08:59:23.639Z","status":"ssl_error","status_checked_at":"2026-03-29T08:57:18.852Z","response_time":89,"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":[],"created_at":"2026-03-15T04:00:23.481Z","updated_at":"2026-03-29T09:00:37.710Z","avatar_url":"https://github.com/overcast-software.png","language":"Emacs Lisp","funding_links":[],"categories":["Tools"],"sub_categories":["IDE Support"],"readme":"![CI](https://github.com/overcast-software/lsp-glint/actions/workflows/ci.yml/badge.svg)\n\n# glint-ts-mode\n\nTree-sitter major mode and LSP integration for **Ember Glint** (`.gts` / `.gjs`) files in Emacs.\n\nThis package provides:\n\n- `glint-ts-mode` — Tree-sitter major mode derived from `tsx-ts-mode`\n- `lsp-glint` — `lsp-mode` client for `glint-language-server`\n\nDesigned for **Emacs 30+ only**.\n\n---\n\n## Requirements\n\n- Emacs **30.1+**\n- Node.js\n- [`glint-language-server`](https://github.com/typed-ember/glint)\n- `lsp-mode` 9.0+\n\n---\n\n## Installation\n\n### MELPA\n\n```elisp\nM-x package-install RET glint-ts-mode\n```\n\n### use-package\n\n```elisp\n(use-package glint-ts-mode\n  :ensure t)\n```\nOpening a .gts or .gjs file will activate the mode and start LSP automatically.\n\n## Usage\n\nOpen a .gts or .gjs file.\n\n- `glint-ts-mode` is enabled automatically\n- `glint-language-server` starts via `lsp-mode`\n- TypeScript LSP (ts-ls) is disabled for Glint buffers\n\n## Tree-sitter Setup\n\nThis package relies on native Tree-sitter support in Emacs 30.\n\nInstall required grammars:\n\n```elisp\nM-x treesit-install-language-grammar RET tsx\nM-x treesit-install-language-grammar RET typescript\n```\n\n### Optional: Glimmer grammar\n\nThis step is only if you need highlighting for GLimmer templates.\n\n```elisp\nM-x treesit-install-language-grammar RET glimmer\n```\n\nTo make these grammars available:\n\n```elisp\n(setq treesit-language-source-alist\n      '((tsx \"https://github.com/tree-sitter/tree-sitter-typescript\" \"master\" \"tsx/src\")\n        (typescript \"https://github.com/tree-sitter/tree-sitter-typescript\" \"master\" \"typescript/src\")\n        (glimmer \"https://github.com/alexlafroscia/tree-sitter-glimmer\")))\n```\n\nMore information: https://www.gnu.org/software/emacs/manual/html_node/elisp/Parsing-Program-Source.html\n\n## Customization\n### Node memory settings\n\n```elisp\n(setq lsp-node-args '(\"--max-old-space-size=4096\"))\n```\n\n## Design Notes\n\n- glint-ts-mode derives from tsx-ts-mode\n- Tree-sitter highlighting uses the TSX grammar\n- Glint is treated as TypeScript at the LSP protocol level\n- No legacy tree-sitter-mode support is included\n\n## License\n\nMIT\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fovercast-software%2Fglnt-ts-mode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fovercast-software%2Fglnt-ts-mode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fovercast-software%2Fglnt-ts-mode/lists"}