{"id":29866555,"url":"https://github.com/ficd0/academic.nvim","last_synced_at":"2025-07-30T12:39:52.978Z","repository":{"id":268958945,"uuid":"905964284","full_name":"ficd0/academic.nvim","owner":"ficd0","description":"Academic English dictionary for Neovim","archived":false,"fork":false,"pushed_at":"2025-04-30T19:21:48.000Z","size":73,"stargazers_count":19,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-22T04:35:21.195Z","etag":null,"topics":["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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ficd0.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}},"created_at":"2024-12-19T21:45:25.000Z","updated_at":"2025-06-20T08:41:32.000Z","dependencies_parsed_at":"2025-07-22T04:35:22.867Z","dependency_job_id":"fbe85a30-58d9-4420-a8bc-526fa9c7b530","html_url":"https://github.com/ficd0/academic.nvim","commit_stats":null,"previous_names":["ficcdaf/academic.nvim","ficd0/academic.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ficd0/academic.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ficd0%2Facademic.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ficd0%2Facademic.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ficd0%2Facademic.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ficd0%2Facademic.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ficd0","download_url":"https://codeload.github.com/ficd0/academic.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ficd0%2Facademic.nvim/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267867894,"owners_count":24157372,"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-07-30T02:00:09.044Z","response_time":70,"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":["neovim-plugin"],"created_at":"2025-07-30T12:39:49.041Z","updated_at":"2025-07-30T12:39:52.953Z","avatar_url":"https://github.com/ficd0.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# academic.nvim\n\nThis plugin installs and initializes an\n[Academic English](https://github.com/emareg/acamedic) dictionary for Neovim. It\nconfigures the dictionary as the `en-academic` language, automatically adding it\nto Neovim's `spelllang` table.\n\n# Features\n\n- Generates Neovim compatible `.spl` dictionary format from the\n  [Acamedic](https://github.com/emareg/acamedic) hunspell dictionary.\n- Optional: Automatically re-generates `.spl` binaries when needed.\n- Optional: Supports directly downloading and building dictionary from Acamedic\n  source (requires [dependencies](#optional-dependencies)).\n\n# Installation\n\nYou can install `academic` with your favourite plugin manager. For example, with\n`lazy.nvim`:\n\n```lua\n{\n  \"ficcdaf/academic.nvim\",\n  -- recommended: rebuild on plugin update\n  build = \":AcademicBuild\"\n  -- ONLY uncomment this if you want to change the defaults!\n  -- you do NOT need to set opts for Academic to load!\n  -- opts = {\n  -- -- change settings here\n  -- }\n}\n```\n\n`academic.nvim` loads automatically. There is no need to call `setup` unless you\nwish to change the default options. The `build` option of the `lazy.nvim` plugin\nspec is recommended -- otherwise, you will need to run `:AcademicBuild` when you\nfirst install the plugin, and on subsequent updates.\n\n# Configuration\n\nConfiguration is entirely optional. You can pass a table to the `setup`\nfunction, or set the `opts` field in the Lazy plugin spec.\n\nThe following options are available:\n\n```lua\n-- default settings\n{\n  auto_install = true,\n  auto_rebuild = false,\n}\n```\n\n## Auto Install\n\n\u003e Recommended: **true**\n\nThe `auto_install` feature will check the Neovim spellfile directory for an\nexisting Academic spellfile. If none is found, it will automatically generate\nand install the spellfile.\n\nIt is recommended to keep this setting **on** because it has a negligible effect\non startup performance, and eliminates the need to manually run the\n`AcademicBuild` command when installing the plugin for the first time.\n\n## Auto Rebuild\n\n\u003e Recommended: **false**\n\nThe `auto_rebuild` feature checks the creation date of the compiled Academic\nspellfile against the source dictionary in the plugin source. If outdated, the\nspellfile is automatically re-built using `AcademicBuild`.\n\nIt is recommended to keep this setting **off** because it may significantly\nincrease startup time on some systems. I was able to save around `1 ms` on my\nmachine by disabling the setting.\n\nIf you're using `lazy.nvim` you can leverage the `build` option to automatically\nrebuild the spellfile _only_ when the plugin is updated. This is the recommended\napproach, please see the [installation](#installation) section.\n\n## Optional Dependencies\n\nIf you wish to build your dictionary directly from Acamedic with the update\nfunction, you must have `bash`, `curl`, and `unmunch` available on your `$PATH`.\n`unmunch` is installed alongside `hunspell` on most systems. This functionality\nis _optional_. **A reasonably up-to-date version of the dictionary is included\nwith this plugin.**\n\n# Usage\n\nThe following commands are provided:\n\n| User Command     | Lua API                                    | Requires Dependencies |\n| ---------------- | ------------------------------------------ | --------------------- |\n| `AcademicUpdate` | `require(\"academic\").update()`             | Yes                   |\n| `AcademicBuild`  | `require(\"academic\").generate_spellfile()` | No                    |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fficd0%2Facademic.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fficd0%2Facademic.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fficd0%2Facademic.nvim/lists"}