Added a bit more clarity.
It's important to understand installing and uninstalling plugins is case sensitive.
This commit is contained in:
parent
527d123211
commit
9f44b6fca9
1 changed files with 8 additions and 8 deletions
16
README.md
16
README.md
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
Installs and loads TMUX plugins.
|
Installs and loads TMUX plugins.
|
||||||
|
|
||||||
Tested and working on Linux, OSX and Cygwin.
|
Tested and working on Linux, OSX, and Cygwin.
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
|
@ -36,19 +36,19 @@ Reload TMUX environment so TPM is sourced:
|
||||||
That's it!
|
That's it!
|
||||||
|
|
||||||
(**Note:** using `set -g @tpm_plugins` is deprecated, but still works alongside
|
(**Note:** using `set -g @tpm_plugins` is deprecated, but still works alongside
|
||||||
new syntax)
|
new syntax.)
|
||||||
|
|
||||||
### Installing plugins
|
### Installing plugins
|
||||||
|
|
||||||
1. add new plugin to `.tmux.conf` with `set -g @plugin '...'`
|
1. Add new plugin to `~/.tmux.conf` with `set -g @plugin '...'`
|
||||||
2. hit `prefix + I` (I as in **I**nstall) to fetch the plugin
|
2. Press `prefix + I` (capital I, as in **I**nstall) to fetch the plugin.
|
||||||
|
|
||||||
You're good to go! The plugin was cloned to `~/.tmux/plugins/` dir and sourced.
|
You're good to go! The plugin was cloned to `~/.tmux/plugins/` dir and sourced.
|
||||||
|
|
||||||
### Uninstalling plugins
|
### Uninstalling plugins
|
||||||
|
|
||||||
1. remove (or comment out) plugin from the list
|
1. Remove (or comment out) plugin from the list.
|
||||||
2. hit `prefix + alt + u` (u as in **u**ninstall) to remove the plugin
|
2. Press `prefix + alt + u` (lowercase u as in **u**ninstall) to remove the plugin.
|
||||||
|
|
||||||
All the plugins are installed to `~/.tmux/plugins/` so alternatively you can
|
All the plugins are installed to `~/.tmux/plugins/` so alternatively you can
|
||||||
find plugin directory there and remove it.
|
find plugin directory there and remove it.
|
||||||
|
@ -56,8 +56,8 @@ find plugin directory there and remove it.
|
||||||
### Key bindings
|
### Key bindings
|
||||||
|
|
||||||
`prefix + I`
|
`prefix + I`
|
||||||
- installs new plugins from github or any other git repo
|
- Installs new plugins from GitHub or any other git repository
|
||||||
- refreshes TMUX environment
|
- Refreshes TMUX environment
|
||||||
|
|
||||||
`prefix + U`
|
`prefix + U`
|
||||||
- updates plugin(s)
|
- updates plugin(s)
|
||||||
|
|
Loading…
Reference in a new issue