{"id":13441651,"url":"https://github.com/tmux-plugins/tmux-sensible","last_synced_at":"2025-05-15T13:07:44.900Z","repository":{"id":19199663,"uuid":"22433077","full_name":"tmux-plugins/tmux-sensible","owner":"tmux-plugins","description":"basic tmux settings everyone can agree on","archived":false,"fork":false,"pushed_at":"2024-04-16T16:49:22.000Z","size":59,"stargazers_count":1909,"open_issues_count":32,"forks_count":94,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-04-15T05:32:05.940Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","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/tmux-plugins.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2014-07-30T15:15:15.000Z","updated_at":"2025-04-11T11:08:53.000Z","dependencies_parsed_at":"2024-06-20T16:19:39.694Z","dependency_job_id":"cf45fab6-d01f-4684-b421-09eea8f96e3b","html_url":"https://github.com/tmux-plugins/tmux-sensible","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmux-plugins%2Ftmux-sensible","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmux-plugins%2Ftmux-sensible/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmux-plugins%2Ftmux-sensible/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmux-plugins%2Ftmux-sensible/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tmux-plugins","download_url":"https://codeload.github.com/tmux-plugins/tmux-sensible/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254346624,"owners_count":22055808,"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-07-31T03:01:36.547Z","updated_at":"2025-05-15T13:07:39.892Z","avatar_url":"https://github.com/tmux-plugins.png","language":"Shell","funding_links":[],"categories":["HarmonyOS","Shell","others"],"sub_categories":["Windows Manager"],"readme":"# Tmux sensible\n\nA set of tmux options that should be acceptable to everyone.\n\nInspired by [vim-sensible](https://github.com/tpope/vim-sensible).\n\nTested and working on Linux, OSX and Cygwin.\n\n### Principles\n\n- `tmux-sensible` options should be acceptable to **every** tmux user!\u003cbr/\u003e\n  If any of the options bothers you, please open an issue and it will probably\n  be updated (or removed).\n- if you think a new option should be added, feel free to open a pull request.\n- **no overriding** of user defined settings.\u003cbr/\u003e\n  Your existing `.tmux.conf` settings are respected and they won't be changed.\n  That way you can use `tmux-sensible` if you have a few specific options.\n\n### Goals\n\n- group standard tmux community options in one place\n- remove clutter from your `.tmux.conf`\n- educate new tmux users about basic options\n\n### Options\n\n```tmux\n# Address vim mode switching delay (http://superuser.com/a/252717/65504)\nset -s escape-time 0\n\n# Increase scrollback buffer size from 2000 to 50000 lines\nset -g history-limit 50000\n\n# Increase tmux messages display duration from 750ms to 4s\nset -g display-time 4000\n\n# Refresh 'status-left' and 'status-right' more often, from every 15s to 5s\nset -g status-interval 5\n\n# (OS X) Fix pbcopy/pbpaste for old tmux versions (pre 2.6)\nset -g default-command \"reattach-to-user-namespace -l $SHELL\"\n\n# Upgrade $TERM\nset -g default-terminal \"screen-256color\"\n\n# Emacs key bindings in tmux command prompt (prefix + :) are better than\n# vi keys, even for vim users\nset -g status-keys emacs\n\n# Focus events enabled for terminals that support them\nset -g focus-events on\n\n# Super useful when using \"grouped sessions\" and multi-monitor setup\nsetw -g aggressive-resize on\n```\n\n### Key bindings\n\n```tmux\n# Easier and faster switching between next/prev window\nbind C-p previous-window\nbind C-n next-window\n```\n\nAbove bindings enhance the default `prefix + p` and `prefix + n` bindings by\nallowing you to hold `Ctrl` and repeat `a + p`/`a + n` (if your prefix is\n`C-a`), which is a lot quicker.\n\n```tmux\n# Source .tmux.conf as suggested in `man tmux`\nbind R source-file '~/.tmux.conf'\n```\n\n\"Adaptable\" key bindings that build upon your `prefix` value:\n\n```tmux\n# If prefix is 'C-a'\nbind C-a send-prefix\nbind a last-window\n```\n\nIf prefix is `C-b`, above keys will be `C-b` and `b`.\u003cbr/\u003e\nIf prefix is `C-z`, above keys will be `C-z` and `z`... you get the idea.\n\n### Installation with [Tmux Plugin Manager](https://github.com/tmux-plugins/tpm) (recommended)\n\nAdd plugin to the list of TPM plugins in `.tmux.conf`:\n\n```tmux\nset -g @plugin 'tmux-plugins/tmux-sensible'\n```\n\nHit `prefix + I` to fetch the plugin and source it. That's it!\n\n### Manual Installation\n\nClone the repo:\n\n    $ git clone https://github.com/tmux-plugins/tmux-sensible ~/clone/path\n\nAdd this line to the bottom of `.tmux.conf`:\n\n```tmux\nrun-shell ~/clone/path/sensible.tmux\n```\n\nReload TMUX environment with `$ tmux source-file ~/.tmux.conf`, and that's it.\n\n### Other goodies\n\nYou might also find these useful:\n\n- [copycat](https://github.com/tmux-plugins/tmux-copycat)\n  improve tmux search and reduce mouse usage\n- [pain control](https://github.com/tmux-plugins/tmux-pain-control)\n  useful standard bindings for controlling panes\n- [resurrect](https://github.com/tmux-plugins/tmux-resurrect)\n  persists tmux environment across system restarts\n\n### License\n\n[MIT](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmux-plugins%2Ftmux-sensible","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmux-plugins%2Ftmux-sensible","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmux-plugins%2Ftmux-sensible/lists"}