2014-05-19 09:17:58 +00:00
|
|
|
# Tmux Plugin Manager
|
|
|
|
|
2014-11-20 01:21:22 +00:00
|
|
|
[![Build Status](https://travis-ci.org/tmux-plugins/tpm.png?branch=master)](https://travis-ci.org/tmux-plugins/tpm)
|
2014-11-19 14:58:12 +00:00
|
|
|
|
2014-05-19 09:17:58 +00:00
|
|
|
Installs and loads TMUX plugins.
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
2014-09-10 19:54:59 +00:00
|
|
|
Requirements: `tmux` version 1.9 (or higher), `git`, `bash`.
|
2014-05-19 09:22:16 +00:00
|
|
|
|
2014-05-19 09:17:58 +00:00
|
|
|
Clone TPM:
|
|
|
|
|
2014-07-28 14:03:13 +00:00
|
|
|
$ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
2014-05-19 09:17:58 +00:00
|
|
|
|
|
|
|
Put this at the bottom of your `.tmux.conf` (backslashes at the end of the lines
|
|
|
|
are required):
|
|
|
|
|
|
|
|
# List of plugins
|
2014-11-20 01:28:20 +00:00
|
|
|
# Supports `github_username/repo` or full git repo URLs
|
|
|
|
set -g @tpm_plugins ' \
|
2014-08-02 10:29:07 +00:00
|
|
|
tmux-plugins/tpm \
|
|
|
|
tmux-plugins/tmux-sensible \
|
2014-11-20 01:28:20 +00:00
|
|
|
'
|
2014-05-19 09:27:10 +00:00
|
|
|
# Other examples:
|
|
|
|
# github_username/plugin_name \
|
|
|
|
# git@github.com/user/plugin \
|
|
|
|
# git@bitbucket.com/user/plugin \
|
2014-05-19 09:17:58 +00:00
|
|
|
|
2014-10-06 10:36:46 +00:00
|
|
|
# Initializes TMUX plugin manager.
|
|
|
|
# Keep this line at the very bottom of tmux.conf.
|
2014-11-20 01:28:20 +00:00
|
|
|
run-shell '~/.tmux/plugins/tpm/tpm'
|
2014-05-19 09:17:58 +00:00
|
|
|
|
|
|
|
Reload TMUX environment so TPM is sourced:
|
|
|
|
|
|
|
|
# type this in terminal
|
|
|
|
$ tmux source-file ~/.tmux.conf
|
|
|
|
|
|
|
|
That's it!
|
|
|
|
|
|
|
|
### Installing plugins
|
|
|
|
|
|
|
|
1. add a new plugin to the `@tpm_plugins` list
|
|
|
|
2. hit `prefix + I` (I as in *I*nstall) to fetch the plugin
|
|
|
|
|
|
|
|
You're good to go! The plugin was cloned to `~/.tmux/plugins/` dir and sourced.
|
|
|
|
|
2014-09-28 22:06:02 +00:00
|
|
|
### Uninstalling plugins
|
|
|
|
|
2014-09-28 22:07:06 +00:00
|
|
|
1. remove plugin from `@tpm_plugins` list
|
2015-05-27 18:41:04 +00:00
|
|
|
2. hit `prefix + alt + u` (I as in *u*install) to remove the plugin
|
2014-09-28 22:06:02 +00:00
|
|
|
|
2014-05-19 09:17:58 +00:00
|
|
|
### Key bindings
|
|
|
|
|
2014-08-05 19:04:17 +00:00
|
|
|
`prefix + I`
|
|
|
|
- installs new plugins from github or any other git repo
|
2014-05-19 09:17:58 +00:00
|
|
|
- refreshes TMUX environment
|
|
|
|
|
2014-08-05 19:04:17 +00:00
|
|
|
`prefix + U`
|
|
|
|
- updates plugin(s)
|
2014-05-19 09:17:58 +00:00
|
|
|
|
2015-05-27 18:41:04 +00:00
|
|
|
`prefix + alt + u`
|
|
|
|
- uninstall unused plugin(s)
|
|
|
|
|
2014-05-19 09:17:58 +00:00
|
|
|
### List of plugins
|
|
|
|
|
2014-08-02 18:57:42 +00:00
|
|
|
For more plugins, check [here](https://github.com/tmux-plugins).
|
2014-05-21 09:14:23 +00:00
|
|
|
|
2014-10-17 21:16:02 +00:00
|
|
|
### Wiki pages
|
|
|
|
|
|
|
|
More advanced features, regular users probably do not need this:
|
|
|
|
|
|
|
|
- [installing plugins via the command line](https://github.com/tmux-plugins/tpm/wiki/Installing-plugins-via-the-command-line-only)
|
|
|
|
- [changing plugins install dir](https://github.com/tmux-plugins/tpm/wiki/Changing-plugins-install-dir)
|
|
|
|
|
2014-05-19 09:17:58 +00:00
|
|
|
### Creating plugins
|
|
|
|
|
2014-05-21 10:29:20 +00:00
|
|
|
[How to create a plugin](HOW_TO_PLUGIN.md). It's easy.
|
|
|
|
|
2014-07-17 20:56:02 +00:00
|
|
|
### Tests
|
|
|
|
|
2014-11-19 14:58:12 +00:00
|
|
|
Tests run on [travis](https://travis-ci.org/tmux-plugins/tpm).
|
2014-07-17 20:56:02 +00:00
|
|
|
|
2014-11-19 14:58:12 +00:00
|
|
|
When run locally, [vagrant](https://www.vagrantup.com/) is required.
|
|
|
|
Run tests with:
|
2014-07-17 20:56:02 +00:00
|
|
|
|
2014-11-19 14:58:12 +00:00
|
|
|
# within project directory
|
2014-07-17 20:56:02 +00:00
|
|
|
$ ./run-tests
|
|
|
|
|
2015-02-20 13:19:48 +00:00
|
|
|
### Other goodies
|
|
|
|
|
|
|
|
- [tmux-copycat](https://github.com/tmux-plugins/tmux-copycat) - a plugin for
|
|
|
|
regex searches in tmux and fast match selection
|
|
|
|
- [tmux-yank](https://github.com/tmux-plugins/tmux-yank) - enables copying
|
|
|
|
highlighted text to system clipboard
|
|
|
|
- [tmux-open](https://github.com/tmux-plugins/tmux-open) - a plugin for quickly
|
|
|
|
opening highlighted file or a url
|
|
|
|
- [tmux-continuum](https://github.com/tmux-plugins/tmux-continuum) - automatic
|
|
|
|
restoring and continuous saving of tmux env
|
|
|
|
|
|
|
|
You might want to follow [@brunosutic](https://twitter.com/brunosutic) on
|
|
|
|
twitter if you want to hear about new tmux plugins or feature updates.
|
|
|
|
|
2014-05-19 09:17:58 +00:00
|
|
|
### License
|
|
|
|
|
|
|
|
[MIT](LICENSE.md)
|