{"id":23729558,"url":"https://github.com/kindermax/lets_ls","last_synced_at":"2026-05-14T21:34:38.154Z","repository":{"id":270406047,"uuid":"906612278","full_name":"kindermax/lets_ls","owner":"kindermax","description":"LSP server for lets cli tool","archived":false,"fork":false,"pushed_at":"2025-01-20T08:00:05.000Z","size":189,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T08:36:55.016Z","etag":null,"topics":["lets","lsp","nvim","rust","vscode"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/kindermax.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-12-21T11:51:31.000Z","updated_at":"2025-01-20T08:00:07.000Z","dependencies_parsed_at":"2025-01-20T08:38:39.266Z","dependency_job_id":null,"html_url":"https://github.com/kindermax/lets_ls","commit_stats":null,"previous_names":["kindermax/lets_ls"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kindermax%2Flets_ls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kindermax%2Flets_ls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kindermax%2Flets_ls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kindermax%2Flets_ls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kindermax","download_url":"https://codeload.github.com/kindermax/lets_ls/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239833033,"owners_count":19704619,"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":["lets","lsp","nvim","rust","vscode"],"created_at":"2024-12-31T02:16:54.303Z","updated_at":"2025-10-11T02:09:09.092Z","avatar_url":"https://github.com/kindermax.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lsp server for lets task runner\n\n## Supported features\n\n* [x] Goto definition\n  - Navigate to definitions of `mixins` files\n* [x] Completion\n  - Complete commands in `depends`\n* [ ] Diagnostics\n* [ ] Hover\n* [ ] Document highlight\n* [ ] Document symbol\n* [ ] Formatting\n* [ ] Signature help\n* [ ] Code action\n\n## Development\n\nBuild:\n\n```bash\ncargo build\n```\n\nTest:\n\n```bash\ncargo test\n```\n\nLint:\n\n```bash\ncargo clippy\n# or to fix lints\ncargo clippy --fix --bin \"lets_ls\"\n```\n\n## Release build\n\n```bash\ncargo build --release\n```\n\n## Integration with Neovim\n\nAdd new filetype:\n\n```lua\nvim.filetype.add({\n  filename = {\n    [\"lets.yaml\"] = \"yaml.lets\",\n  },\n})\n```\n\nIn your `neovim/nvim-lspconfig` servers configuration:\n\nIn order for `nvim-lspconfig` to recognize lets_ls we must define config for `lets_ls`\n\n```lua\nrequire(\"lspconfig.configs\").lets_ls = {\n  default_config = {\n    cmd = { \n      \"lets_ls\",\n    },\n    filetypes = { \"yaml.lets\" },\n    root_dir = util.root_pattern(\"lets.yaml\"),\n    settings = {},\n  },\n}\n```\n\nAnd then enable `lets_ls` in then `servers` section:\n\n```lua\nreturn {\n  \"neovim/nvim-lspconfig\",\n  opts = {\n    servers = {\n      lets_ls = {},\n      pyright = {},  -- just to show an example how we enable lsp servers\n    },\n  },\n}\n```\n\n## Integration with VSCode\n\nExtension can be found [here](https://marketplace.visualstudio.com/items?itemName=kindritskyimax.vscode-lets).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkindermax%2Flets_ls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkindermax%2Flets_ls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkindermax%2Flets_ls/lists"}