{"id":24631002,"url":"https://github.com/jmtd/nvim-microwiki","last_synced_at":"2026-05-16T20:36:27.074Z","repository":{"id":273887856,"uuid":"921198449","full_name":"jmtd/nvim-microwiki","owner":"jmtd","description":"A minimalist neovim plugin to add wiki features to Markdown documents","archived":false,"fork":false,"pushed_at":"2026-04-08T20:40:35.000Z","size":26,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-08T21:27:46.873Z","etag":null,"topics":["markdown","neovim-plugin","wiki"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jmtd.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":"2025-01-23T14:26:23.000Z","updated_at":"2026-04-08T20:40:50.000Z","dependencies_parsed_at":"2025-01-23T15:44:35.741Z","dependency_job_id":null,"html_url":"https://github.com/jmtd/nvim-microwiki","commit_stats":null,"previous_names":["jmtd/nvim-microwiki"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jmtd/nvim-microwiki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmtd%2Fnvim-microwiki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmtd%2Fnvim-microwiki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmtd%2Fnvim-microwiki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmtd%2Fnvim-microwiki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmtd","download_url":"https://codeload.github.com/jmtd/nvim-microwiki/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmtd%2Fnvim-microwiki/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33118103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"ssl_error","status_checked_at":"2026-05-16T18:38:29.903Z","response_time":115,"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":["markdown","neovim-plugin","wiki"],"created_at":"2025-01-25T07:14:07.481Z","updated_at":"2026-05-16T20:36:27.069Z","avatar_url":"https://github.com/jmtd.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nvim-µwiki\n\nA minimalist plugin to add basic wiki functions to [Markdown] documents.\n\n## ✨ Features\n\nRelevant function names in parentheses\n\n * Jump the cursor between wiki-links (enclosed in double-braces, e.g. `[[this]]`)\n   in a document (`prevWikiLink`, `nextWikiLink`)\n * Follow wiki-links to existing pages where they exist, or start editing empty buffers (`maybeFollowWikiLink`)\n * Quickly edit a page corresponding to Today's date (`todayDatePage`)\n * Quickly Navigate to previous/next days from any page with a filename matching\n   `%Y-%m-%d` e.g. `2025-01-23` (`prevDatePage`, `nextDatePage`)\n * Populate the tag stack as you follow wiki-links\n * Don't take over the FileType: play nicely with any other Markdown\n   configuration or plugins you are using.\n\n## ⚡️ Requirements\n\n * [Neovim]. This has been developed with version 0.10.0.\n * [This Treesitter grammar for markdown](https://github.com/tree-sitter-grammars/tree-sitter-markdown).\n   It's bundled with Neovim since version 0.10.0.\n\n## 📦 Installation\n\nUse your favourite plugin manager. I'm using\n[vim-plug](https://github.com/junegunn/vim-plug/). E.g.:\n\n```Vim\ncall plug#begin()\n  Plug 'jmtd/nvim-microwiki'\ncall plug#end()\n```\n\n## ⚙️ Configuration\n\n```Lua\nvim.api.nvim_create_autocmd('FileType', {pattern='markdown', callback=function(args)\n\n    -- You need to have TreeSitter enabled for Markdown documents. (This\n    -- isn't needed for neovim \u003e= 0.12.0, where it is enabled by default).\n    vim.treesitter.start(args.buf, 'markdown')\n\n    -- nvim-µwiki determines your preferred file extension by reading the\n    -- first value from vim's existing `suffixesadd` option\n    vim.opt_local.suffixesadd = { \".mdwn\" , \".md\" }\n\n    -- Here are some suggested key mappings:\n    local wiki = require(\"nvim-µwiki\")\n    vim.keymap.set('n', '\u003cleader\u003ewd', wiki.todayDatePage)\n    vim.keymap.set('n', '\u003cC-]\u003e',      wiki.followWikiLink,      {buffer = true})\n    vim.keymap.set('n', '\u003cCR\u003e',       wiki.maybeFollowWikiLink, {buffer = true})\n    vim.keymap.set('n', '\u003cTab\u003e',      wiki.nextWikiLink,        {buffer = true})\n    vim.keymap.set('n', '\u003cS-Tab\u003e',    wiki.prevWikiLink,        {buffer = true})\n    vim.keymap.set('n', '\u003cC-Down\u003e',   wiki.nextDatePage,        {buffer = true})\n    vim.keymap.set('n', '\u003cC-Up\u003e',     wiki.prevDatePage,        {buffer = true})\n\nend })\n```\n\n## 🧐 See also\n\n * [Vimwiki]: fully featured VimScript wiki\n * [Potwiki]: VimScript wiki of text files\n\n## Authors\n\n * Copyright © 2025-2026 [Jonathan Dowland], all rights reserved.\n\nDistributed under the GNU General Public License, version 3. See [LICENSE](LICENSE).\n\n[Markdown]: https://commonmark.org/\n[Jonathan Dowland]: https://jmtd.net/\n[Vimwiki]: https://github.com/vimwiki/vimwiki\n[Neovim]: https://neovim.io/\n[Potwiki]: https://www.vim.org/scripts/script.php?script_id=1018\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmtd%2Fnvim-microwiki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmtd%2Fnvim-microwiki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmtd%2Fnvim-microwiki/lists"}