{"id":29301966,"url":"https://github.com/spaceshaman/window-shuffler.nvim","last_synced_at":"2026-04-17T01:02:00.488Z","repository":{"id":302681589,"uuid":"1013262021","full_name":"SpaceShaman/window-shuffler.nvim","owner":"SpaceShaman","description":"Smartly shuffle Neovim windows around – layout-aware and intuitive.","archived":false,"fork":false,"pushed_at":"2025-07-24T15:27:51.000Z","size":25,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-15T02:25:20.129Z","etag":null,"topics":["neovim","neovim-plugin","nvim","nvim-plugin","vim"],"latest_commit_sha":null,"homepage":"","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/SpaceShaman.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}},"created_at":"2025-07-03T15:55:44.000Z","updated_at":"2025-07-24T15:27:29.000Z","dependencies_parsed_at":"2025-07-03T17:57:20.509Z","dependency_job_id":null,"html_url":"https://github.com/SpaceShaman/window-shuffler.nvim","commit_stats":null,"previous_names":["spaceshaman/window-shuffler.nvim"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/SpaceShaman/window-shuffler.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceShaman%2Fwindow-shuffler.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceShaman%2Fwindow-shuffler.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceShaman%2Fwindow-shuffler.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceShaman%2Fwindow-shuffler.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpaceShaman","download_url":"https://codeload.github.com/SpaceShaman/window-shuffler.nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpaceShaman%2Fwindow-shuffler.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31910585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["neovim","neovim-plugin","nvim","nvim-plugin","vim"],"created_at":"2025-07-06T23:09:06.129Z","updated_at":"2026-04-17T01:01:58.398Z","avatar_url":"https://github.com/SpaceShaman.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003ewindow-shuffler.nvim\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eSmartly shuffle Neovim windows around – layout-aware and intuitive.\u003c/p\u003e\n\n## Features\n\n* Move the current **window** in any direction: left, right, up, or down.\n* Automatically finds the best possible placement based on existing layout.\n* Respects window dimensions to keep your layout clean and consistent.\n* Simple setup with fully customizable keymaps.\n\n## Installation\n\nUsing [packer](https://github.com/wbthomason/packer.nvim):\n\n```lua\nuse { \"SpaceShaman/window-shuffler.nvim\", tag = \"*\", config = function()\n  require(\"window-shuffler\").setup()\nend }\n```\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  \"SpaceShaman/window-shuffler.nvim\",\n  version = \"*\",\n  opts = {\n    -- Optional custom keymaps\n  },\n}\n```\n\nUsing [vim-plug](https://github.com/junegunn/vim-plug):\n\n```vim\nPlug 'SpaceShaman/window-shuffler.nvim', {'tag': '*'}\n\nlua require(\"window-shuffler\").setup()\n```\n\nYou can (and should) pin the plugin to a tag to avoid breaking changes as development continues.\n\n## Configuration\n\nYou can configure the plugin by passing a table to the `setup()` function:\n\n```lua\nrequire(\"window-shuffler\").setup({\n  keymaps = {\n    left = \"\u003cC-w\u003eH\",\n    down = \"\u003cC-w\u003eJ\",\n    up = \"\u003cC-w\u003eK\",\n    right = \"\u003cC-w\u003eL\",\n  },\n})\n```\n\nOr by using the `opts` field in your lazy.nvim config:\n\n```lua\n{\n  \"SpaceShaman/window-shuffler.nvim\",\n  opts = {\n    keymaps = {\n      left = \"\u003cC-w\u003eH\",\n      down = \"\u003cC-w\u003eJ\",\n      up = \"\u003cC-w\u003eK\",\n      right = \"\u003cC-w\u003eL\",\n    },\n  },\n}\n```\n\n### `keymaps`\n\nA table of keybindings for directional movement. Default values are:\n\n* `\u003cC-w\u003eH`: Move current window to the left.\n* `\u003cC-w\u003eJ`: Move current window downward.\n* `\u003cC-w\u003eK`: Move current window upward.\n* `\u003cC-w\u003eL`: Move current window to the right.\n\n## How it works\n\nWhen you trigger a directional move, the plugin searches for the most logical location in that direction – for example, it may go around obstacles to maintain the layout's flow. It ensures the moved window integrates cleanly with the rest of your layout.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspaceshaman%2Fwindow-shuffler.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspaceshaman%2Fwindow-shuffler.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspaceshaman%2Fwindow-shuffler.nvim/lists"}