tpm/README.md

78 lines
1.7 KiB
Markdown
Raw Normal View History

2014-05-19 05:17:58 -04:00
# Tmux Plugin Manager
Installs and loads TMUX plugins.
### Installation
2014-09-10 15:54:59 -04:00
Requirements: `tmux` version 1.9 (or higher), `git`, `bash`.
2014-05-19 05:22:16 -04:00
2014-05-19 05:17:58 -04:00
Clone TPM:
$ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
2014-05-19 05:17:58 -04:00
Put this at the bottom of your `.tmux.conf` (backslashes at the end of the lines
are required):
# List of plugins
# Supports `github_username/repo` or full git URLs
set -g @tpm_plugins " \
2014-08-02 06:29:07 -04:00
tmux-plugins/tpm \
tmux-plugins/tmux-sensible \
2014-05-19 05:17:58 -04:00
"
2014-05-19 05:27:10 -04:00
# Other examples:
# github_username/plugin_name \
# git@github.com/user/plugin \
# git@bitbucket.com/user/plugin \
2014-05-19 05:17:58 -04:00
# initializes TMUX plugin manager
2014-05-19 05:27:10 -04:00
run-shell ~/.tmux/plugins/tpm/tpm
2014-05-19 05:17:58 -04: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.
### Uninstalling plugins
2014-09-28 18:07:06 -04:00
1. remove plugin from `@tpm_plugins` list
2. All the plugins are installed to `~/.tmux/plugins/`. Find plugin
directory there and just remove it.
2014-05-19 05:17:58 -04:00
### Key bindings
2014-08-05 15:04:17 -04:00
`prefix + I`
- installs new plugins from github or any other git repo
2014-05-19 05:17:58 -04:00
- refreshes TMUX environment
2014-08-05 15:04:17 -04:00
`prefix + U`
- updates plugin(s)
2014-05-19 05:17:58 -04:00
### List of plugins
2014-08-02 14:57:42 -04:00
For more plugins, check [here](https://github.com/tmux-plugins).
2014-05-21 05:14:23 -04:00
2014-05-19 05:17:58 -04:00
### Creating plugins
2014-05-21 06:29:20 -04:00
[How to create a plugin](HOW_TO_PLUGIN.md). It's easy.
2014-07-17 16:56:02 -04:00
### Tests
Requirements: [vagrant](https://www.vagrantup.com/)
2014-07-17 17:19:27 -04:00
To run a test suite:
2014-07-17 16:56:02 -04:00
$ ./run-tests
2014-05-19 05:17:58 -04:00
### License
[MIT](LICENSE.md)