{"id":23137678,"url":"https://github.com/julelang/jule.nvim","last_synced_at":"2025-10-20T01:29:01.713Z","repository":{"id":268286430,"uuid":"903815124","full_name":"julelang/jule.nvim","owner":"julelang","description":"Official Jule extension for Neovim","archived":false,"fork":false,"pushed_at":"2025-08-07T12:41:05.000Z","size":59,"stargazers_count":10,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-11T01:33:40.492Z","etag":null,"topics":["jule","julelang","neovim","nvim","vim"],"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/julelang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"adamperkowski","custom":"https://adamperkowski.dev/donate"}},"created_at":"2024-12-15T16:20:33.000Z","updated_at":"2025-08-07T12:41:09.000Z","dependencies_parsed_at":"2024-12-15T20:19:25.137Z","dependency_job_id":"0dbab3bf-aba1-46f1-a7ba-a5e6744632cb","html_url":"https://github.com/julelang/jule.nvim","commit_stats":null,"previous_names":["adamperkowski/jule.nvim","julelang/jule.nvim"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/julelang/jule.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julelang%2Fjule.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julelang%2Fjule.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julelang%2Fjule.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julelang%2Fjule.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/julelang","download_url":"https://codeload.github.com/julelang/jule.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julelang%2Fjule.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270840603,"owners_count":24654990,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["jule","julelang","neovim","nvim","vim"],"created_at":"2024-12-17T13:08:27.684Z","updated_at":"2025-10-20T01:28:56.681Z","avatar_url":"https://github.com/julelang.png","language":"Lua","funding_links":["https://github.com/sponsors/adamperkowski","https://adamperkowski.dev/donate"],"categories":[],"sub_categories":[],"readme":"# Jule for Neovim\nOfficial [Jule](https://github.com/julelang/jule) extension for Neovim.\n\n___\n\n- [Features](#features)\n- [Installation](#installation)\n  - [vim-plug](#vim-plug)\n- [Configuration](#configuration)\n  - [Code formatting](#code-formatting)\n  - [Completion source](#completion-source)\n- [Development](#development)\n  - [Requirements](#requirements)\n  - [Setup](#setup)\n  - [Execution](#execution)\n- [Code of Conduct](#code-of-conduct)\n- [License](#license)\n\n___\n\n## Features\n- Syntax highlighting\n- Code formatting ([julefmt](https://github.com/julelang/julefmt))\n- Basic keyword completion source for [nvim-cmp]\n\n## Installation\n### [vim-plug](https://github.com/junegunn/vim-plug)\nAdd the following line to your Vim configuration file:\n```vim\nPlug 'julelang/jule.nvim'\n```\nThen run the following command:\n```vim\n:PlugInstall\n```\n\n## Configuration\n### Code formatting\n```lua\nrequire('jule').setup {\n  format_on_save = true,\n  format_command = \"julefmt -w %\" -- default, optional\n}\n```\n\n### Completion source\nNote that [nvim-cmp] has to be installed.\n```lua\nrequire('jule').setup {\n  enable_cmp = true\n}\n\nrequire('cmp').setup {\n  sources = {\n    { name = 'jule' }\n  }\n}\n```\n\n## Development\n### Requirements\n- [Lua](https://www.lua.org)\n- [Neovim](https://neovim.io)\n- [JuleC](https://github.com/julelang/jule)\n- [JuleFmt](https://github.com/julelang/julefmt)\n\n### Setup\n1. Make sure all the requirements are installed and are available in your `PATH` variable\n2. Clone the repository and navigate to its directory:\n```bash\n$ git clone git@github.com:julelang/jule.nvim.git\n$ cd jule.nvim\n```\n\n### Execution\n1. Create a test Jule module:\n```bash\n$ julec mod init\n$ printf \"fn main() {\\n    println(\\\"Hello world\\\")\\n}\" \u003e main.jule\n```\n2. Get the path to the plugin:\n```bash\n$ pwd\n```\n3. Open Neovim:\n```bash\n$ nvim main.jule\n```\n4. Set the runtime path and filetype:\n```vim\n:set runtimepath+=/path/to/jule.nvim\n:set filetype=jule\n```\n5. Source the plugin:\n```vim\n:source /path/to/jule.nvim/lua/jule/init.lua\n```\n6. Configure the plugin:\n```vim\n:lua require('jule').setup { format_on_save = true }\n```\n7. Done! (you might need to re-open the buffer for the completion source to initialize properly)\n\n## Code of Conduct\nSee the [Julenour Code of Conduct](https://jule.dev/code-of-conduct)\n\n## License\nThe extension is distributed under the terms of the BSD 3-Clause license. \u003cbr\u003e\n[See License Details](/LICENSE)\n\n[nvim-cmp]: https://github.com/hrsh7th/nvim-cmp\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulelang%2Fjule.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulelang%2Fjule.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulelang%2Fjule.nvim/lists"}