{"id":20565248,"url":"https://github.com/ppebb/ppebboard","last_synced_at":"2025-10-18T19:02:38.001Z","repository":{"id":127497383,"uuid":"595860612","full_name":"ppebb/ppebboard","owner":"ppebb","description":"Neovim dashboard plugin","archived":false,"fork":false,"pushed_at":"2025-07-12T17:36:36.000Z","size":21,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-12T19:35:14.440Z","etag":null,"topics":["dashboard","neovim","neovim-plugin","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ppebb.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}},"created_at":"2023-02-01T00:29:14.000Z","updated_at":"2025-07-12T17:36:40.000Z","dependencies_parsed_at":"2023-06-28T11:51:16.095Z","dependency_job_id":"6a2d123a-16be-400c-9e3e-2a93e2ec5561","html_url":"https://github.com/ppebb/ppebboard","commit_stats":null,"previous_names":["ppebb/ppebboard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ppebb/ppebboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppebb%2Fppebboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppebb%2Fppebboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppebb%2Fppebboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppebb%2Fppebboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ppebb","download_url":"https://codeload.github.com/ppebb/ppebboard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ppebb%2Fppebboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278621847,"owners_count":26017253,"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-10-06T02:00:05.630Z","response_time":65,"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","neovim","neovim-plugin","vim","vim-plugin"],"created_at":"2024-11-16T04:33:25.669Z","updated_at":"2025-10-06T13:42:18.336Z","avatar_url":"https://github.com/ppebb.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ppebboard\nSmall lua plugin to create a dashboard on launch. Clone of [dashboard-nvim](https://github.com/glepnir/dashboard-nvim), because it broke my config one too many times...\n## Setup/Configuration\nInstallation with packer -\n```lua\nuse({\n    \"pollen00/ppebboard\",\n    config = function() require(\"ppebboard\").setup(your_config) end,\n})\n```\n\nConfiguration is straightforward, with the available options being -\n```lua\nrequire(\"ppebboard\").setup({\n    header = {\n        lines = {\n            [[ ____             _     _                         _ ]],\n            [[|  _ \\ _ __   ___| |__ | |__   ___   __ _ _ __ __| |]],\n            [[| |_) | '_ \\ / _ \\ '_ \\| '_ \\ / _ \\ / _` | '__/ _` |]],\n            [[|  __/| |_) |  __/ |_) | |_) | (_) | (_| | | | (_| |]],\n            [[|_|   | .__/ \\___|_.__/|_.__/ \\___/ \\__,_|_|  \\__,_|]],\n            [[      |_|]],\n        },\n        highlight = \"PpebboardHeader\", -- Optional highlight group to apply to the header. Can be set to DashboardHeader if your colorscheme supports dashboard-nvim\n    },\n    center = {\n        items = {\n            {\n                icon = \"  \",\n                text = \"Recently opened files                 \", -- Can have an item containing only text, in the event you want no icon, shortcut, or action\n                shortcut = \"f h\", -- Will be used for the actual hotkey, with the spaces removed\n                action = \"Telescope oldfiles\", -- Can be a vim command, in which case the string will be wrapped with : and \u003cCR\u003e, or a lua function\n                icon_highlight = \"PpebboardIcon\", -- Highlights can be set per item. All optional\n                text_highlight = \"PpebboardText\",\n                shortcut_highlight = \"PpebboardShortcut\",\n            },\n            -- Add as many as you want\n        },\n        icon_highlight = \"PpebboardIcon\", -- These options will highlight every item, unless set inside of the item. All optional\n        text_highlight = \"PpebboardText\", -- Can be set to DashboardCenter if your colorscheme supports dashboard-nvim\n        shortcut_highlight = \"PpebboardShortcut\", -- Can be set to DashboardShortCut if your colorscheme supports dashboard-nvim\n        spacing = true, -- Should each item have an empty line between them\n    },\n    footer = {\n        lines = {\n            \"\",\n            \"\",\n            \"Neovim loaded \" .. #vim.tbl.keys(packer_plugins) .. \" plugins\" -- Plugin count example for packer\n        },\n        highlight = \"PpebbaordFooter\" -- Optional highlight group to apply to the footer. Can be set to Dashboardfooter if your colorscheme supports dashboard-nvim\n    },\n})\n```\n\nFor examples of possible center items, see [my config](https://github.com/pollen00/nvim-conf/blob/main/lua/ppebboard-config.lua#L52)\n\nIf you use [indent-blankline](https://github.com/lukas-reineke/indent-blankline.nvim), add \"ppebboard\" to filetype_exclude in indent-blankline's setup. [Example](https://github.com/pollen00/nvim-conf/blob/main/lua/indent-blankline-config.lua#L13). \u003cbr\u003e\nIf you use [vim-better-whitespace](https://github.com/ntpeters/vim-better-whitespace), add `vim.g.better_whitespace_filetypes_blacklist = { \"ppebboard\" }\n` to your init.lua.\n\n## Feature Requests\nI'm open to adding features to this plugin. Make an issue describing your request, or message me at ppeb#4062 on Discord, or @ppeb:matrix.org on matrix.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fppebb%2Fppebboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fppebb%2Fppebboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fppebb%2Fppebboard/lists"}