{"id":15422545,"url":"https://github.com/heaths/helix","last_synced_at":"2026-01-06T20:52:13.929Z","repository":{"id":248612205,"uuid":"829193991","full_name":"heaths/helix","owner":"heaths","description":"Helix editor configuration","archived":false,"fork":false,"pushed_at":"2025-02-10T18:20:28.000Z","size":23,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T19:31:32.745Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Scheme","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/heaths.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-07-16T00:28:44.000Z","updated_at":"2025-02-10T18:20:32.000Z","dependencies_parsed_at":"2024-12-07T06:40:43.597Z","dependency_job_id":"c2aba6ce-8cf3-43c7-90ea-5f7d4e5eb560","html_url":"https://github.com/heaths/helix","commit_stats":{"total_commits":21,"total_committers":2,"mean_commits":10.5,"dds":0.1428571428571429,"last_synced_commit":"6d076c37d48e16736a690a3c7455d5395e7cb5dc"},"previous_names":["heaths/helix"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heaths%2Fhelix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heaths%2Fhelix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heaths%2Fhelix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heaths%2Fhelix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heaths","download_url":"https://codeload.github.com/heaths/helix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245969147,"owners_count":20702200,"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":[],"created_at":"2024-10-01T17:38:53.165Z","updated_at":"2026-01-06T20:52:13.902Z","avatar_url":"https://github.com/heaths.png","language":"Scheme","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Helix Configuration\n\nMy configuration for the [Helix editor][website].\n\n## Clone\n\n### Linux and macOS\n\n```bash\ngit clone https://github.com/heaths/helix ~/.config/helix\n```\n\n### Windows\n\n```powershell\ngit clone 'https://github.com/heaths/helix' $env:APPDATA/helix\n```\n\n## Installation\n\nSee [Installing Helix](https://docs.helix-editor.com/install.html) for more options.\n\n### Ubuntu\n\n```bash\nsudo add-apt-repository ppa:maveonair/helix-editor\nsudo apt update\nsudo apt install helix\n```\n\n### Windows\n\n```bash\nwinget install -e Helix.Helix\n```\n\nInstall `xclip` in WSL2 on Windows 11 to use the system clipboard:\n\n```bash\nsudo apt install xclip\n```\n\n### macOS\n\n```bash\nbrew install helix\n```\n\n## Language Support\n\nSee [Language Server Configurations](https://github.com/helix-editor/helix/wiki/Language-Server-Configurations) for more options.\n\n### Bash\n\n```bash\nnpm i -g bash-language-server\n```\n\n### Bicep\n\n[Install .NET](https://dot.net/download) for your platform.\n\n```bash\ngh -R Azure/bicep release download -p bicep-langserver.zip -O ~/Downloads/bicep-langserver.zip\nunzip -d ~/.cache/bicep-langserver ~/Downloads/bicep-langserver.zip\ncat \u003c\u003c'EOF' \u003e ~/.local/bin/bicep-langserver\n#!/usr/bin/env bash\ndotnet ~/.cache/bicep-langserver/Bicep.LangServer.dll\nEOF\nchmod +x ~/.local/bin/bicep-langserver\n```\n\n### Docker\n\n```bash\nnpm install -g dockerfile-language-server-nodejs   # Docker\nnpm install -g @microsoft/compose-language-service # Docker Compose\n```\n\n### GraphQL\n\n```bash\nnpm i -g graphql-language-service-cli\n```\n\n### Go\n\n```bash\ngo install golang.org/x/tools/gopls@latest                     # LSP\ngo install github.com/nametake/golangci-lint-langserver@latest # LSP\ngo install github.com/go-delve/delve/cmd/dlv@latest            # Debugger\ngo install golang.org/x/tools/cmd/goimports@latest             # Formatter\n```\n\n### HTML\n\n```bash\nnpm i -g vscode-langservers-extracted\n```\n\n### JavaScript\n\nSee [TypeScript](#typescript).\n\n### JSON\n\n```bash\nnpm i -g vscode-langservers-extracted\n```\n\n### Markdown\n\nUsing [Marksman](https://github.com/artempyanykh/marksman):\n\n#### Linux and macOS\n\n```bash\nbrew install marksman\n```\n\n#### Windows\n\n```bash\nscoop install marksman\n```\n\n### Python\n\n```bash\nnpm install -g pyright\n```\n\n### Rust\n\n```bash\nrustup component add clippy rust-analyzer\n```\n\n### Swift\n\nIncluded with Xcode, but also available from \u003chttps://www.swift.org/install/\u003e.\nAs of 6.0, `swift format` is available globally.\n\n### TOML\n\n```bash\ncargo install taplo-cli --locked --features lsp\n```\n\n### TypeScript\n\n```bash\nnpm install -g typescript typescript-language-server\n```\n\n### TypeSpec\n\n```bash\nnpm install -g @typespec/compiler\nhx -g fetch\nhx -g build\n```\n\n### YAML\n\n```bash\nnpm i -g yaml-language-server@next\n```\n\n[docs]: https://docs.helix-editor.com/\n[website]: https://helix-editor.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheaths%2Fhelix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheaths%2Fhelix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheaths%2Fhelix/lists"}