{"id":28731949,"url":"https://github.com/nvzone/floaterm","last_synced_at":"2026-05-16T06:38:27.269Z","repository":{"id":298625134,"uuid":"998981762","full_name":"nvzone/floaterm","owner":"nvzone","description":"Beautiful floating terminal manager for Neovim","archived":false,"fork":false,"pushed_at":"2025-09-22T07:12:28.000Z","size":57,"stargazers_count":249,"open_issues_count":1,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-09-22T08:32:56.134Z","etag":null,"topics":["lua","neovim","neovim-plugin","nvchad","nvzone","rice","volt"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nvzone.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},"funding":{"github":"siduck","patreon":"siduck","ko_fi":"siduck","buy_me_a_coffee":"siduck","custom":["https://www.paypal.com/paypalme/siduck76"]}},"created_at":"2025-06-09T14:57:01.000Z","updated_at":"2025-09-22T07:12:32.000Z","dependencies_parsed_at":"2025-06-12T03:41:28.903Z","dependency_job_id":"2adc9d09-e038-4c7c-8240-ed1caecd9716","html_url":"https://github.com/nvzone/floaterm","commit_stats":null,"previous_names":["nvzone/floaterm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nvzone/floaterm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvzone%2Ffloaterm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvzone%2Ffloaterm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvzone%2Ffloaterm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvzone%2Ffloaterm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nvzone","download_url":"https://codeload.github.com/nvzone/floaterm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvzone%2Ffloaterm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33092841,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":["lua","neovim","neovim-plugin","nvchad","nvzone","rice","volt"],"created_at":"2025-06-15T19:30:47.803Z","updated_at":"2026-05-16T06:38:27.264Z","avatar_url":"https://github.com/nvzone.png","language":"Lua","funding_links":["https://github.com/sponsors/siduck","https://patreon.com/siduck","https://ko-fi.com/siduck","https://buymeacoffee.com/siduck","https://www.paypal.com/paypalme/siduck76"],"categories":["Lua"],"sub_categories":[],"readme":"# Floaterm\n\nA beautiful toggleable floating window for managing terminal buffers within Neovim\n\n![floaterm-with-border](https://github.com/user-attachments/assets/8a51aeff-dcc5-477f-a282-9b48a1e5bf2b)\n![floaterm-noborder](https://github.com/user-attachments/assets/15e19849-69e6-432b-8fd9-7ffaad872e28)\n\n## Install \n\n```lua \n{\n    \"nvzone/floaterm\",\n    dependencies = \"nvzone/volt\",\n    opts = {},\n    cmd = \"FloatermToggle\",\n}          \n```\n\n## Default config\n\n```lua\n {\n    border = false,\n    size = { h = 60, w = 70 },\n\n    -- to use, make this func(buf)\n    mappings = { sidebar = nil, term = nil},\n\n    -- Default sets of terminals you'd like to open\n    terminals = {\n      { name = \"Terminal\" },\n      -- cmd can be function too\n      { name = \"Terminal\", cmd = \"neofetch\" },\n      -- More terminals\n    },\n}\n```\n\n## Mappings\n\nThis are the mappings for sidebar \n- \u003ckbd\u003ea\u003c/kbd\u003e -\u003e add new terminal\n- \u003ckbd\u003ee\u003c/kbd\u003e -\u003e edit terminal name\n- Pressing any number within sidebar will switch to that terminal\n\n\nMust be pressed in main terminal buffer\n- \u003ckbd\u003eCtrl + h\u003c/kbd\u003e -\u003e Switch to sidebar\n- \u003ckbd\u003eCtrl + j\u003c/kbd\u003e -\u003e Cycle to prev terminal\n- \u003ckbd\u003eCtrl + k\u003c/kbd\u003e -\u003e Cycle to next terminal\n\nAdd new mapping\n\n```lua \n  {\n     mappings = {\n       term = function(buf)\n         vim.keymap.set({ \"n\", \"t\" }, \"\u003cC-p\u003e\", function()\n           require(\"floaterm.api\").cycle_term_bufs \"prev\"\n         end, { buffer = buf })\n       end,\n     },\n  },\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnvzone%2Ffloaterm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnvzone%2Ffloaterm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnvzone%2Ffloaterm/lists"}