{"id":17978096,"url":"https://github.com/ilya-bobyr/tmux-config","last_synced_at":"2025-04-04T00:23:31.159Z","repository":{"id":33370412,"uuid":"37015295","full_name":"ilya-bobyr/tmux-config","owner":"ilya-bobyr","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-15T02:31:08.000Z","size":77,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-15T03:25:49.354Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ilya-bobyr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2015-06-07T12:12:14.000Z","updated_at":"2025-03-15T02:31:12.000Z","dependencies_parsed_at":"2024-01-05T01:25:37.777Z","dependency_job_id":"3b3fb43e-dba9-4546-b2c6-4f5c94605acc","html_url":"https://github.com/ilya-bobyr/tmux-config","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilya-bobyr%2Ftmux-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilya-bobyr%2Ftmux-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilya-bobyr%2Ftmux-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilya-bobyr%2Ftmux-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilya-bobyr","download_url":"https://codeload.github.com/ilya-bobyr/tmux-config/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247099383,"owners_count":20883377,"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","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":"2024-10-29T17:31:22.663Z","updated_at":"2025-04-04T00:23:31.137Z","avatar_url":"https://github.com/ilya-bobyr.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"[tmux](http://tmux.sourceforge.net/) is a terminal multiplexer.\n\n- Prefix mapped to Ctrl-A for `screen` users.\n\nNew to tmux? [*The Tao of tmux*](https://leanpub.com/the-tao-of-tmux) is\nnow available on Leanpub and [Amazon Kindle](http://amzn.to/2gPfRhC). Read\nand browse the book for [on the\nweb](https://leanpub.com/the-tao-of-tmux/read).\n\nWant more tmux? Check out the [libtmux](https://github.com/tony/libtmux)\npython library for controlling tmux, and load your code projects via\nYAML/JSON with [tmuxp](https://github.com/tony/tmuxp).\n\nInstallation\n------------\n\nDownload:\n\n```bash\nmkdir -p ~/works  # Or any other directory you like\ncd ~/works\ngit clone https://github.com/ilya-bobyr/tmux-config.git\n```\n\nInstall:\n\n```bash\ncd\nln -s ~/works/tmux-config/.tmux.conf\n```\n\nI use [Tmux Plugin Manager (TPM)](https://github.com/tmux-plugins/tpm), so\nyou'll need to install it as well:\n\n```bash\ngit clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm\n```\n\nNow you can start tmux:\n\n```bash\ntmux\n```\n\nor, if you want to name your session:\n\n```bash\ntmux new-session -s my-main-session\n```\n\nAnd finally, if this is the first time you are using this config, you need\nto install TPM plugins, by pressing `\u003cControl + a\u003e \u003cShift + i\u003e` and waiting\nfor a second, until you see a \"Tmux environment reloaded\" message.\n\nStart tmux\n----------\n\nTo start a session:\n\n`tmux`\n\nIf you want to name your session:\n\n`tmux new-session -s project1`\n\nTo reattach a previous session:\n\n`tmux attach`\n\nTo reload the config file:\n\n`\u003cControl + a\u003e r`\n\nCommands\n--------\n\nOur prefix/leader key is `Control + a`. This sequence must be typed before\nany tmux shortcut.\n\n* `Control + a` before any command\n* `Control + a` then `?` to bring up list of keyboard shortcuts\n* `Control + a` then `\"` to split window\n* `Control + a` then `\u003cSpace\u003e` to change pane arrangement\n* `Control + a` then `o` to rotate panes\n* `Control + a` then `h`, `j`, `k`, `l` to move left, down, up, right. Respectively. (vim hjkl)\n* `Control + a` then `;` to go to last panel\n\nBeyond your first window:\n\n* `Control + a` then `c` to create a new window\n* `Control + a` then `n` to next window\n* `Control + a` then `p` to previous window\n* `Control + a` then `[0-9]` move to window number\n* `Control + a` then `\u0026` to kill window\n\nMore configs / Tools\n--------------------\n\n* *Save / Load your tmux workspaces through JSON or YAML* with\n  [tmuxp](https://github.com/tony/tmuxp).\n* *Clone + Synchronize your git / hg / svn projects through JSON / YAML*\n  with [vcspull](https://github.com/tony/vcspull).\n* *Modular, Lazy-loading vim configuration* with support for C, C++,\n  Python, Go and Javascript with\n  [tony/vim-config](https://github.com/tony/vim-config)\n* *Modular dot-config example*\n  [tony/.dot-config](https://github.com/tony/.dot-config)\n\nOther\n-----\n\n* LICENSE: MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filya-bobyr%2Ftmux-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filya-bobyr%2Ftmux-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filya-bobyr%2Ftmux-config/lists"}