Tmux

Установить Tmux

sudo apt-get install tmux

Проверить версию

tmux -V

Если у вас есть 1.8 или старше, то вы должны обновить. Вот команды обновления для Ubuntu 14.04

sudo apt-get update
sudo apt-get install -y python-software-properties software-properties-common
sudo add-apt-repository -y ppa:pi-rho/dev
sudo apt-get update
sudo apt-get install -y tmux=2.0-1~ppa1~t

Теперь, если вы выполните « tmux -V«, он должен показать « tmux 2.0«, который является хорошей версией для плагинов tmux.

Основано на: http://stackoverflow.com/questions/25940944/ugrade-tmux-from-1-8-to-1-9-on-ubuntu-14-04

Установите Tmux Plugin Manager

Требования: « tmux« версия 1.9 (или выше), « git«, « bash«

Клон TPM:

$ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

Поместите это в конец .tmux.conf:

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'

# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

Перезагрузите среду TMUX, чтобы получить источник TPM:

# type this in terminal
$ tmux source ~/.tmux.conf

Основано на: https://github.com/tmux-plugins/tpm

Установите Tmux Resurrect

Добавьте плагин в список плагинов TPM в .tmux.conf:

set -g @plugin 'tmux-plugins/tmux-resurrect'

Нажмите « prefix + I«, чтобы получить плагин и получить его. Теперь вы должны иметь возможность использовать плагин.

Основано на: https://github.com/tmux-plugins/tmux-resurrect

Установить tmux-континуум

Последнее сохраненное окружение автоматически восстанавливается при запуске tmux. Поместите следующие строки в « tmux.conf«:

set -g @continuum-save-interval '5'
set -g @continuum-restore 'on'

Ваша среда будет автоматически сохраняться каждые 5 минут. Когда вы запустите tmux, он автоматически восстановится

Основано на: https://github.com/tmux-plugins/tmux-continuum

Конфигурация Tmux

Создайте файл с именем « .tmux.conf« в вашем домашнем каталоге.

Пример « .tmux.conf«:

# Global settings

# Set prefix key to Ctrl-a
# unbind-key C-b
# set-option -g prefix C-a

# send the prefix to client inside window
# bind-key C-a send-prefix

# scrollback buffer n lines
set -g history-limit 10000

# tell tmux to use 256 colour terminal
set -g default-terminal "screen-256color"

# enable wm window titles
set -g set-titles on

# reload settings
bind-key R source-file ~/.tmux.conf

# Statusbar settings

# toggle statusbar
bind-key s set status

# use vi-style key bindings in the status line
set -g status-keys vi

# amount of time for which status line messages and other indicators
# are displayed. time is in milliseconds.
set -g display-time 2000

# default statusbar colors
set -g status-fg white
set -g status-bg default
set -g status-attr default

# default window title colors
setw -g window-status-fg white
setw -g window-status-bg default
setw -g window-status-attr dim

# active window title colors
setw -g window-status-current-fg cyan
setw -g window-status-current-bg default
#setw -g window-status-current-attr bright
setw -g window-status-current-attr underscore

# command/message line colors
set -g message-fg white
set -g message-bg black
set -g message-attr bright

set-option -g status-keys vi
set-option -g mode-keys vi

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-save-interval '5'
set -g @continuum-restore 'on'

# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

Next  Previous

Was this helpful?

0 / 0