{"id":47097058,"url":"https://github.com/doprz/jujutsu.nvim","last_synced_at":"2026-03-12T14:44:42.843Z","repository":{"id":343021593,"uuid":"1175761195","full_name":"doprz/jujutsu.nvim","owner":"doprz","description":"A Neovim plugin for jujutsu integration. Inspired by lazygit.nvim","archived":false,"fork":false,"pushed_at":"2026-03-08T14:58:32.000Z","size":110,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-08T16:48:15.396Z","etag":null,"topics":["jj","jj-vcs","jjui","jujutsu","lazygit","lua","neovim","neovim-plugin","nvim"],"latest_commit_sha":null,"homepage":"","language":"Lua","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/doprz.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-03-08T06:02:15.000Z","updated_at":"2026-03-08T14:58:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/doprz/jujutsu.nvim","commit_stats":null,"previous_names":["doprz/jujutsu.nvim"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/doprz/jujutsu.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doprz%2Fjujutsu.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doprz%2Fjujutsu.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doprz%2Fjujutsu.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doprz%2Fjujutsu.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doprz","download_url":"https://codeload.github.com/doprz/jujutsu.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doprz%2Fjujutsu.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30428718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: 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":["jj","jj-vcs","jjui","jujutsu","lazygit","lua","neovim","neovim-plugin","nvim"],"created_at":"2026-03-12T14:44:42.380Z","updated_at":"2026-03-12T14:44:42.832Z","avatar_url":"https://github.com/doprz.png","language":"Lua","readme":"# jujutsu.nvim\n\nA Neovim plugin for jujutsu integration. Inspired by lazygit.nvim\n\n![jujutsu.nvim example](./jujutsu-nvim.png)\n\n## Requirements\n\n- Neovim 0.11+\n- Jujutsu\n- JJ TUI (Optional but recommended)\n\n## Installation\n\nlazy.nvim\n\n```lua\n{\n  'doprz/jujutsu.nvim',\n  config = function()\n    require('jujutsu').setup {\n      cmd = 'jjui',\n      mappings = {\n        toggle = '\u003cleader\u003ejj',\n        close = '\u003cC-q\u003e',\n      },\n    }\n  end,\n}\n```\n\n## Configuration\n\n`setup()` can be called with no arguments. `jujutsu.nvim` comes with sensible defaults.\n\n```lua\nrequire('jujutsu.nvim').setup {\n  -- Command to run. Good options:\n  --   \"jjui\"\n  --   \"lazyjj\"\n  --   { \"jj\", \"log\" }\n  cmd = \"jjui\",\n\n  -- Use the jj root as the cwd\n  use_vcs_root = true,\n\n  -- Auto-close the float when the process exits.\n  -- Set to false for non-interactive commands like { \"jj\", \"log\" }\n  -- so the buffer stays open until you press the close mapping.\n  auto_close = true,\n\n  floating = {\n    width = 0.8, -- fraction of editor width\n    height = 0.8, -- fraction of editor height\n    border = \"rounded\",\n    title = \" Jujutsu \",\n    title_pos = \"center\",\n    -- Set to a highlight group for the border, e.g. \"FloatBorder\"\n    winhighlight = \"Normal:Normal,FloatBorder:FloatBorder\",\n  },\n\n  mappings = {\n    toggle = \"\u003cleader\u003ejj\",\n    close = \"\u003cC-q\u003e\",\n  },\n}\n```\n\n## API\n\n```lua\nlocal jj = require('jujutsu.nvim')\n\njj.open()    -- open the float\njj.close()   -- close the float\njj.toggle()  -- toggle the float\n```\n\n## Contributing\n\nContributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines and more info.\n\n## License\n\nSPDX-License-Identifier: MIT\n\nLicensed under the MIT License. See [LICENSE](LICENSE) for full details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoprz%2Fjujutsu.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoprz%2Fjujutsu.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoprz%2Fjujutsu.nvim/lists"}