2025-01-09 02:11:08 +01:00
|
|
|
# tmux
|
|
|
|
|
|
|
|
My configuration for [tmux](https://github.com/tmux/tmux).
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Symlink `tmux.conf` to `$XDG_CONFIG_HOME/tmux/tmux.conf`.\
|
2025-01-28 02:33:23 +01:00
|
|
|
Install Tmux Plugin Manage using `git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm`\
|
2025-01-09 02:11:08 +01:00
|
|
|
Then either do Prefix + I in tmux or run `~/.tmux/plugins/tpm/bin/install_plugins`
|
|
|
|
|
|
|
|
## Automatic Installation (Linux)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir -p $XDG_CONFIG_HOME/tmux
|
|
|
|
ln -s $PWD/tmux.conf $XDG_CONFIG_HOME/tmux/tmux.conf
|
2025-01-28 02:33:23 +01:00
|
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
2025-01-09 02:11:08 +01:00
|
|
|
~/.tmux/plugins/tpm/bin/install_plugins
|
|
|
|
```
|