{"id":16632677,"url":"https://github.com/mvllow/lilvim","last_synced_at":"2025-09-13T08:46:48.249Z","repository":{"id":37205492,"uuid":"471141478","full_name":"mvllow/lilvim","owner":"mvllow","description":"A modular and opinionated starting point for Neovim","archived":false,"fork":false,"pushed_at":"2025-09-05T15:54:13.000Z","size":116,"stargazers_count":13,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-05T17:51:01.696Z","etag":null,"topics":["lua","neovim"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mvllow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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},"funding":{"github":"mvllow","ko_fi":"mvllow"}},"created_at":"2022-03-17T21:01:29.000Z","updated_at":"2025-09-05T15:54:16.000Z","dependencies_parsed_at":"2025-02-28T16:29:26.416Z","dependency_job_id":"c393a1ef-723b-4527-9351-3ff95ba47291","html_url":"https://github.com/mvllow/lilvim","commit_stats":{"total_commits":101,"total_committers":2,"mean_commits":50.5,"dds":0.00990099009900991,"last_synced_commit":"68ee5c4a67a2847a6410fc8fde3e93d00d91a83d"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mvllow/lilvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mvllow%2Flilvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mvllow%2Flilvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mvllow%2Flilvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mvllow%2Flilvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mvllow","download_url":"https://codeload.github.com/mvllow/lilvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mvllow%2Flilvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274941492,"owners_count":25378204,"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-09-13T02:00:10.085Z","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":["lua","neovim"],"created_at":"2024-10-12T05:06:19.605Z","updated_at":"2025-09-13T08:46:48.237Z","avatar_url":"https://github.com/mvllow.png","language":"Lua","readme":"# lilvim\n\n\u003e A modular and opinionated starting point for Neovim\n\n## Features\n\n- 🪴 Self-contained modules\n- 📦 Documented built-in functionality\n- 🥟 Deliciously simple to extend\n\n## Usage\n\n```sh\n# Notice the destination folder is lilvim, not nvim\ngit clone https://github.com/mvllow/lilvim ~/.config/lilvim\n\n# Optionally, use the included init.lua as your starting point\ncd ~/.config/lilvim\nmv example-init.lua init.lua\n\n# Run lilvim by setting the NVIM_APPNAME environment variable\nNVIM_APPNAME=lilvim nvim\n```\n\nAlternatively, you may pull any module into your own config or install as a plugin:\n\n```lua\nvim.pack.add({\n\t\"https://github.com/mvllow/lilvim\"\n})\n```\n\n## Modules\n\n\u003e If installed as a plugin, you may run `:help lilvim` for the complete documentation.\n\n_**[lil-complete](lua/lil-complete.lua)**_\\\nText (auto)completion\n\n_**[lil-edit](lua/lil-edit.lua)**_\\\nGeneral editing keymaps and options\n\n_**[lil-grep](lua/lil-grep.lua)**_\\\nExtend built-in grep behaviour\n\n_**[lil-lsp](lua/lil-lsp.lua)**_\\\nLanguage servers and diagnostics\n\n_**[lil-places](lua/lil-places.lua)**_\\\nExtend built-in mark behaviour\n\n_**[lil-quickfix](lua/lil-quickfix.lua)**_\\\nExtend built-in quickfix behaviour\n\n_**[lil-search](lua/lil-search.lua)**_\\\nFile management and search\n\n_**[lil-subs](lua/lil-subs.lua)**_\\\nSubstitute your text, with different text\n\n_**[lil-windows](lua/lil-windows.lua)**_\\\nWindow management\n\n_For not-so-lil module extensions, head over to our [wiki](https://github.com/mvllow/lilvim/wiki)_\n\n## Principles\n\n\u003e Heavily inspired by [Rational Emacs](https://github.com/SystemCrafters/rational-emacs)\n\n### Minimal and modular by design\n\nLilvim includes several self-contained modules which handle their own vim options, keymaps and configurations. This approach differs from the common practice of separating functionality by plugin.\n\n### Prioritise built-in Neovim functionality\n\nWe demonstrate Neovim's built-in capabilities and lower the platform's barrier to entry for new users. This lightweight approach encourages users to first understand the platform's features before adding plugins.\n\n## Related\n\nIf you're looking for a more robust starting point for your own config, check out [kickstart.nvim](https://github.com/nvim-lua/kickstart.nvim). It provides an excellent foundation with detailed explanations of each component.\n\nFor users seeking a batteries-included experience, consider:\n\n- [LazyVim](https://github.com/LazyVim/LazyVim) - Modern and feature-rich config\n- [AstroVim](https://github.com/kabinspace/AstroVim) - Beautiful and customisable environment\n\n## Contributing\n\nWe welcome and appreciate contributions of any kind. Please open an issue to discuss the addition of new modules.\n","funding_links":["https://github.com/sponsors/mvllow","https://ko-fi.com/mvllow"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmvllow%2Flilvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmvllow%2Flilvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmvllow%2Flilvim/lists"}