{"id":44197516,"url":"https://github.com/rogue-87/inlyne.nvim","last_synced_at":"2026-02-10T22:01:11.473Z","repository":{"id":306438158,"uuid":"1025688610","full_name":"rogue-87/inlyne.nvim","owner":"rogue-87","description":"Wrapper for inlyne markdown viewer","archived":false,"fork":false,"pushed_at":"2026-02-01T17:50:37.000Z","size":51,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-02T01:31:25.744Z","etag":null,"topics":["lua","neovim","neovim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rogue-87.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":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-24T16:32:36.000Z","updated_at":"2026-02-01T17:50:40.000Z","dependencies_parsed_at":"2025-07-25T20:08:47.303Z","dependency_job_id":"8add2bf7-9419-49a3-b37e-265b0cdd42cc","html_url":"https://github.com/rogue-87/inlyne.nvim","commit_stats":null,"previous_names":["rogue-87/inlyne.nvim"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rogue-87/inlyne.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogue-87%2Finlyne.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogue-87%2Finlyne.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogue-87%2Finlyne.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogue-87%2Finlyne.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rogue-87","download_url":"https://codeload.github.com/rogue-87/inlyne.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogue-87%2Finlyne.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29319237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"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":["lua","neovim","neovim-plugin"],"created_at":"2026-02-09T20:00:24.065Z","updated_at":"2026-02-10T22:01:11.384Z","avatar_url":"https://github.com/rogue-87.png","language":"Lua","readme":"# 📓 Inlyne.nvim\n\n![Neovim](https://img.shields.io/badge/Neovim-0.11+-green.svg?style=flat\u0026logo=neovim)\n![License](https://img.shields.io/badge/License-MIT-blue.svg)\n\ninlyne.nvim is a simple neovim plugin wrapper around the [inlyne](https://github.com/Inlyne-Project/inlyne) markdown viewer tool.\n\nhttps://github.com/user-attachments/assets/35738769-763b-4def-b87f-dc100ea1f65e\n\n## ❗ Requirements\n\n- Neovim \u003e= 0.11\n- inlyne installed (`cargo install inlyne` or [pre-built binary](https://github.com/Inlyne-Project/inlyne/releases) )\n\n## 📦 Installation\n\nInstall the plugin with your package manager of choice\n\n[lazy.nvim](https://github.com/folke/lazy.nvim)\n\n```lua\n{\n    \"rogue-87/inlyne.nvim\",\n    -- some optional keymaps\n    --[[ keys = {\n        { \"\u003cleader\u003eie\", \"\u003ccmd\u003eInlyne enable\u003ccr\u003e\", desc = \"Enable Inlyne\" },\n        { \"\u003cleader\u003eid\", \"\u003ccmd\u003eInlyne disable\u003ccr\u003e\", desc = \"Disable Inlyne\" },\n        { \"\u003cleader\u003eit\", \"\u003ccmd\u003eInlyne toggle\u003ccr\u003e\", desc = \"Toggle Inlyne\" },\n    }, ]]\n    opts = {},\n}\n```\n\n## Configuration\n\n\u003e [!important]\n\u003e Make sure to run `:checkhealth inlyne` if something isn't working properly\n\n```lua\n---@class Inlyne.Config\n---@field bin string\n---@field debounce_ms integer\nlocal default_config = {\n    bin = \"inlyne\", -- must be available in PATH\n    debounce_ms = 200, -- delay in milliseconds for live preview updates\n}\n```\n\n## Usage\n\n`Inlyne enable` : starts inlyne\n\n`Inlyne disable` : stops inlyne\n\n`Inlyne toggle`: toggles inlyne\n","funding_links":[],"categories":["Programming Languages Support"],"sub_categories":["Markdown and LaTeX"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frogue-87%2Finlyne.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frogue-87%2Finlyne.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frogue-87%2Finlyne.nvim/lists"}