{"id":50731374,"url":"https://github.com/beixiyo/vv-dashboard.nvim","last_synced_at":"2026-06-10T09:01:16.381Z","repository":{"id":353982178,"uuid":"1220667016","full_name":"beixiyo/vv-dashboard.nvim","owner":"beixiyo","description":"Lightweight startup dashboard for Neovim. 轻量启动页","archived":false,"fork":false,"pushed_at":"2026-05-23T08:47:48.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T12:42:00.037Z","etag":null,"topics":["dashboard","greeter","lua","neovim","neovim-plugin","nvim","nvim-plugin","startup"],"latest_commit_sha":null,"homepage":null,"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/beixiyo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-04-25T07:05:25.000Z","updated_at":"2026-05-23T08:47:52.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/beixiyo/vv-dashboard.nvim","commit_stats":null,"previous_names":["beixiyo/vv-dashboard.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/beixiyo/vv-dashboard.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beixiyo%2Fvv-dashboard.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beixiyo%2Fvv-dashboard.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beixiyo%2Fvv-dashboard.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beixiyo%2Fvv-dashboard.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beixiyo","download_url":"https://codeload.github.com/beixiyo/vv-dashboard.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beixiyo%2Fvv-dashboard.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34144680,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"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":["dashboard","greeter","lua","neovim","neovim-plugin","nvim","nvim-plugin","startup"],"created_at":"2026-06-10T09:01:14.825Z","updated_at":"2026-06-10T09:01:16.375Z","avatar_url":"https://github.com/beixiyo.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003evv-dashboard.nvim\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cem\u003e极简 Neovim 启动页 — 单 buffer、非浮窗、与侧栏天然共存\u003c/em\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Neovim-0.10+-57A143?style=flat-square\u0026logo=neovim\u0026logoColor=white\" alt=\"Requires Neovim 0.10+\" /\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Lua-2C2D72?style=flat-square\u0026logo=lua\u0026logoColor=white\" alt=\"Lua\" /\u003e\n\u003c/p\u003e\n\n---\n\n## 安装\n\n```lua\n{\n  'beixiyo/vv-dashboard.nvim',\n  dependencies = { 'beixiyo/vv-utils.nvim' },\n  event = 'VimEnter',\n  ---@type VVDashboardConfig\n  opts = {\n    header = nil,           -- 多行 ASCII art（string 按 \\n 分割，string[] 逐行）\n    keys = {\n      { icon = '󰈚', key = 'r', desc = '最近文件', action = 'Telescope oldfiles' },\n      { icon = '󰈞', key = 'f', desc = '查找文件', action = 'Telescope find_files' },\n      { icon = '', key = 'g', desc = '全局搜索', action = 'Telescope live_grep' },\n      { icon = '', key = 'q', desc = '退出',     action = 'qa' },\n    },\n    footer = nil,           -- fun(): VVDashboardChunk[] | string | nil\n    auto_open = true,       -- 启动时无参数 + 空 buffer 自动打开\n    filetype = 'dashboard', -- dashboard buffer 的 filetype\n    width = 60,             -- keys 区域容器宽度（两端对齐基准）\n    key_gap = 1,            -- keys 之间的空行数\n    section_gap = 2,        -- header / keys / footer 之间的空行数\n  },\n}\n```\n\n## 配置\n\n| 选项 | 类型 | 默认值 | 说明 |\n|------|------|--------|------|\n| `header` | `string \\| string[]` | *VSCode ASCII art* | 头部多行文本 |\n| `keys` | `VVDashboardKey[]` | `{}` | 快捷键列表：`{ icon?, key, desc, action }` |\n| `footer` | `fun(): VVDashboardChunk[] \\| string \\| nil` | `nil` | 底部内容，支持多色片段 `{ text, hl_group }[]` |\n| `auto_open` | `boolean` | `true` | `VimEnter` 时无参数 + 空 buffer 自动打开 |\n| `filetype` | `string` | `'dashboard'` | buffer filetype |\n| `width` | `integer` | `60` | keys 区域容器宽度 |\n| `key_gap` | `integer` | `1` | keys 之间的空行数 |\n| `section_gap` | `integer` | `2` | 三段之间的空行数 |\n| `highlights` | `VVDashboardHighlights` | *见源码* | 各段高亮组名（header / icon / desc / key / footer） |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeixiyo%2Fvv-dashboard.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeixiyo%2Fvv-dashboard.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeixiyo%2Fvv-dashboard.nvim/lists"}