{"id":42810480,"url":"https://github.com/carloscalla/notepad.nvim","last_synced_at":"2026-01-31T04:00:36.924Z","repository":{"id":300068386,"uuid":"1005095417","full_name":"carloscalla/notepad.nvim","owner":"carloscalla","description":"Neovim plugin for taking quick notes","archived":false,"fork":false,"pushed_at":"2026-01-27T19:10:35.000Z","size":22,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-28T05:59:07.218Z","etag":null,"topics":[],"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/carloscalla.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-06-19T16:55:11.000Z","updated_at":"2026-01-27T21:21:31.000Z","dependencies_parsed_at":"2025-06-19T18:54:39.676Z","dependency_job_id":null,"html_url":"https://github.com/carloscalla/notepad.nvim","commit_stats":null,"previous_names":["carloscalla/notepad.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/carloscalla/notepad.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloscalla%2Fnotepad.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloscalla%2Fnotepad.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloscalla%2Fnotepad.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloscalla%2Fnotepad.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carloscalla","download_url":"https://codeload.github.com/carloscalla/notepad.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloscalla%2Fnotepad.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28928628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T02:59:34.861Z","status":"ssl_error","status_checked_at":"2026-01-31T02:59:05.369Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2026-01-30T05:00:32.985Z","updated_at":"2026-01-31T04:00:36.908Z","avatar_url":"https://github.com/carloscalla.png","language":"Lua","readme":"# notepad.nvim\n\nNeovim plugin for taking quick notes\n\nRepo-specific notepad (if in git).\n\u003cimg width=\"1149\" height=\"655\" alt=\"image\" src=\"https://github.com/user-attachments/assets/c0f825fb-53c6-4815-a29f-2de4d4726e92\" /\u003e\n\nGlobal notepad.\n\u003cimg width=\"924\" height=\"611\" alt=\"image\" src=\"https://github.com/user-attachments/assets/399c267b-be3f-4482-ad4e-032c7a7d0927\" /\u003e\n\n## Installation \u0026 Setup\n\nUse your favorite package manager to install notepad.nvim, e.g:\n\n### Lazy\n\n```lua\n{\n  \"carloscalla/notepad.nvim\",\n  opts = {}\n}\n```\n\nNote: You need to call the `setup` function to initialize the plugin. Lazy.nvim does\nthis with `opts = {}` in the example above.\n\n```lua\nrequire(\"notepad\").setup({\n  -- Your configuration here\n})\n```\n\n### Default Configuration\n\n```lua\nrequire(\"notepad\").setup({\n  position = \"bottom\", -- 'top', 'left', 'right', 'bottom'\n  split_size = nil,   -- Size of the split (percentage or absolute size). nil uses default split behavior\n})\n```\n\n### Setup examples\n\n```lua\n-- Top horizontal split\nrequire('notepad').setup({ position = 'top', split_size = 15 })\n\n-- Left vertical split (30% of screen width)\nrequire('notepad').setup({ position = 'left', split_size = 0.3 })\n\n-- Right vertical split (50 columns)\nrequire('notepad').setup({ position = 'right', split_size = 50 })\n\n-- Bottom horizontal split (default)\nrequire('notepad').setup({ position = 'bottom', split_size = 0.25 })\n```\n\n## Usage Examples\n\nUse the following commands:\n\n```vim\n:Notepad           \" Opens repo-specific notepad (if in git) or global notepad\n:Notepad global    \" Opens global notepad\n```\n\nOr with Lua:\n\n```lua\n-- Opens repo-specific notepad (if in git) or global notepad\nrequire(\"notepad\").open()\n\n-- Opens global notepad\nrequire(\"notepad\").open_global()\n```\n\n## Inspiration\n\n- [vim-bujo](https://github.com/vuciv/vim-bujo)\n","funding_links":[],"categories":["Note Taking"],"sub_categories":["Cursorline"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarloscalla%2Fnotepad.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarloscalla%2Fnotepad.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarloscalla%2Fnotepad.nvim/lists"}